
/* ============================================
   GENERAL STYLES & VARIABLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #007BFF;
    --primary-dark: #0056b3;
    --secondary-color: #00C6A9;
    --dark-bg: #081A3A;
    --dark-text: #1a1a1a;
    --light-text: #666666;
    --light-bg: #f8fafc;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.logo-img{
    height: 90px;
    width:auto;
    display:block;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   NAVIGATION BAR
   ============================================ */

.navbar{
    background: linear-gradient(
        90deg,
        #007BFF,
        #0D2B5E,
        #081A3A  
    );
    padding: 10px 0;
}

.navbar .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.logo-icon {
    font-size: 32px;
    color: var(--secondary-color);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.company-tagline {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--secondary-color);
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    flex: 1;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--secondary-color);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary {
    background: var(--secondary-color);
    color: white;
    white-space: nowrap;
}

.btn-primary:hover {
    background: #059669;
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
    padding: 14px 28px;
    font-size: 15px;
}

.btn-secondary:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
}

.btn-outline:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.btn-white {
    background: white;
    color: var(--primary-color);
    padding: 14px 28px;
}

.btn-white:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
}

.btn-small {
    padding: 10px 16px;
    font-size: 13px;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero{
    background:
    linear-gradient(rgba(8,26,58,0.85), rgba(8,26,58,0.85)),
    url("../images/technova-bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 120px 0;
    position: relative;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:url("images/tech-pattern.png");
    opacity:0.08;
    background-size:cover;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

.stars::before,
.stars::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--secondary-color);
}

.hero-description {
    font-size: 16px;
    margin-bottom: 35px;
    opacity: 0.9;
    line-height: 1.8;
    max-width: 450px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.feature-item strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 13px;
    opacity: 0.8;
}

.cloud-illustration {
    position: relative;
    height: 400px;
}

.cloud-shape {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 40%, rgba(16, 185, 129, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    position: relative;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

.network-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 48%, rgba(16, 185, 129, 0.1) 49%, rgba(16, 185, 129, 0.1) 51%, transparent 52%),
        linear-gradient(180deg, transparent 48%, rgba(16, 185, 129, 0.1) 49%, rgba(16, 185, 129, 0.1) 51%, transparent 52%);
    background-size: 40px 40px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services {
    padding: 100px 0;
    background: white;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-description {
    color: var(--light-text);
    font-size: 15px;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-card{
    position: relative;
    overflow: hidden;
    min-height: 320px;
    padding: 30px;
    color: white;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
}

.service-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.9),
        rgba(0,0,0,0.4)
    );
}

.service-card *{
    position: relative;
    z-index: 2;
}

.service-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
    border-color: var(--secondary-color);
}
.service-card:nth-child(1){
    background-image: url("../images/cloud.jpg");
}

.service-card:nth-child(2){
    background-image: url("../images/cybersecurity.jpg");
}

.service-card:nth-child(3){
    background-image: url("../images/consulting.jpg");
}

.service-card:nth-child(4){
    background-image: url("../images/managed-it.jpg");
}

.service-card:nth-child(5){
    background-image: url("../images/software.jpg");
}

.service-card:nth-child(6){
    background-image: url("../images/ebook.jpg");
}

.service-card h3{
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
}

.service-card p{
    color: #f1f5f9;
    font-size: 15px;
    line-height: 1.8;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.8);
}

.service-link{
    color: #00C6A9;
    font-weight: 700;
}
f
.service-card h3,
.service-card p,
.service-card .service-link{
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.6s ease;
}

.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-link{
    transform: translateY(0);
    opacity: 1;
}


/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
    padding: 100px 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.team-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
     background:
    linear-gradient(
        rgba(8,26,58,0.35),
        rgba(8,26,58,0.35)
    ),
    url("../images/about-team.jpg");
      background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 30px;
}

.experience-badge {
    background: var(--dark-bg);
    color: white;
    padding: 20px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-lg);
}

.badge-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}

.badge-text {
    font-size: 13px;
    line-height: 1.4;
    max-width: 120px;
}

.about-text {
    animation: fadeInRight 0.8s ease;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.about-feature {
    display: flex;
    gap: 15px;
}

.about-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.about-feature p {
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.6;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   INDUSTRIES SECTION
   ============================================ */

.industries {
    padding: 100px 0;
    background: white;
}

.industries-header {
    text-align: center;
    margin-bottom: 60px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.industry-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f4ff 100%);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.industry-card:hover {
    background: linear-gradient(135deg, #e0e7ff 0%, #dbeafe 100%);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.industry-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.industry-card p {
    font-size: 14px;
    color: var(--light-text);
    line-height: 1.6;
}

/* ============================================
   CASE STUDIES SECTION
   ============================================ */

.case-studies {
    padding: 100px 0;
    background: #f8fafc;
}

.case-studies-header {
    text-align: center;
    margin-bottom: 60px;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.case-study-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
}

.case-study-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-10px);
}

.case-study-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.2;
    margin-bottom: 10px;
}

.case-study-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.case-study-card p {
    color: var(--light-text);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

/* ============================================
   RESOURCES SECTION
   ============================================ */

.resources {
    padding: 100px 0;
    background: white;
}

.resources-header {
    text-align: center;
    margin-bottom: 60px;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.resource-card {
    background: white;
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.resource-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.resource-type {
    display: inline-block;
    background: #f0f4ff;
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.resource-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact{
    background:
    linear-gradient(
        rgba(8,26,58,0.75),
        rgba(8,26,58,0.75)
    ),
    url("../images/contact-bg.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: white;
    padding: 100px 0;
    text-align: center;
}

.contact h2{
    font-size: 52px;
    font-weight: 700;
    animation: fadeUp 1s ease;
}

.contact p{
    animation: fadeUp 1.3s ease;
}

.contact .btn{
    animation: fadeUp 1.6s ease;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.7);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
    color: white;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    font-size: 13px;
    opacity: 0.6;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .services-grid,
    .industries-grid,
    .case-studies-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .contact h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .section-title {
        font-size: 22px;
    }

    .navbar {
        padding: 15px 0;
    }

    .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

.about-hero{
    background:
    linear-gradient(rgba(8,26,58,.8),rgba(8,26,58,.8)),
    url("../images/about-banner.jpg");
    background-size:cover;
    background-position:center;
    color:white;
    text-align:center;
    padding:120px 20px;
}

.about-hero h1{
    font-size:60px;
    margin-bottom:15px;
}

.about-hero p{
    font-size:18px;
    max-width:700px;
    margin:auto;
}

.about-cards{
    padding:100px 0;
    background:#f8fafc;
}

.card-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.about-card{
    background:white;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.about-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.about-card h3{
    margin-bottom:15px;
    color:#081A3A;
}

.about-card p{
    color:#666;
    line-height:1.8;
}

.stats-section{
    background:#081A3A;
    padding:100px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    text-align:center;
}

.stat-card h2{
    font-size:50px;
    color:#00C6A9;
}

.stat-card p{
    color:white;
}

.about-cta{
    background:
    linear-gradient(rgba(8,26,58,.8),rgba(8,26,58,.8)),
    url("../images/contact-bg.jpg");
    background-size:cover;
    background-position:center;
    padding:100px 20px;
    text-align:center;
    color:white;
}

.about-cta h2{
    font-size:45px;
    margin-bottom:20px;
}

.about-cta p{
    margin-bottom:30px;
}

.about-banner-image{
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;

    background:
    linear-gradient(
        rgba(8,26,58,0.25),
        rgba(8,26,58,0.25)
    ),
    url("../images/about-team.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.about-banner-image::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(8,26,58,0.7),
        rgba(8,26,58,0.1)
    );
}

.experience-badge{
    position:relative;
    z-index:2;
}

.contact-form{
    max-width:800px;
    margin:auto;
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:600;
}

.form-group input,
.form-group textarea{
    width:100%;
    padding:14px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px;
}

.form-group input:focus,
.form-group textarea:focus{
    outline:none;
    border-color:#007BFF;
}

@media(max-width:768px){

.form-row{
    grid-template-columns:1fr;
}

}