body {
    margin: 0;
    font-family: Arial, sans-serif;
}
/* Header Styles */

 :root {
            --primary: #2c5e92;
            --secondary: #e8491d;
            --dark: #333;
            --light: #f4f4f4;
            --highlight: #ffd700;
        }

        header {
            background-color: white;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

.logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 60px;
            margin-right: 15px;
        }
        
        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
        }

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}
nav ul li {
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            color: black;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem;
            border-radius: 4px;
        }

 nav ul li a:hover {
            background-color: #e8491d;
        }

.hero {
    background: url("../images/header-bg.jpg") no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
}
.hero-content {
    position: absolute;
    bottom: 50%;
    transform: translateY(50%);
    font-size: 2em;
    font-weight: bold;
}
.video-container {
    position: absolute;
    bottom: 20px;
}

button {
    padding: 10px 20px;
    font-size: 16px;
    background-color: red;
    color: white;
    border: none;
    cursor: pointer;
}

.btn {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 0.8rem 2rem;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
            margin: 0 0.5rem;
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid white;
        }
        
        .btn:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        /* About Section */
        .section {
            padding: 5rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            padding-bottom: 1rem;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background-color: var(--secondary);
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }
        
        .about-text {
            flex: 1;
            min-width:320px;
        }

        .about-text p{
            font-size: 15px;
            line-height:1.5;
            color:#666;
            margin-bottom:30px;
    }
        
        .about-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        
        .about-image img:hover {
            transform: scale(1.05);
        }
        
        /* Services Section */

        .features{
      display:flex;
      justify-content:space-between;
      gap:40px;
      margin-top:70px;
      margin-left: 200px;
      margin-right: 200px;
      flex-wrap:wrap;
    }

    .feature-box{
      flex:1;
      min-width:200px;
      display:flex;
      align-items:flex-start;
    }

    .number{
      font-size:40px;
      color:#d9002b;
      font-weight:300;
      line-height:1;
    }

    .feature-content h3{
      font-size:28px;
      margin-bottom:12px;
      color:#111;
      letter-spacing:1px;
    }

    .feature-content p{
      font-size:18px;
      color:#666;
      line-height:1.5;
    }

     .vision-mission-section{
      position:relative;
      padding:120px 8%;
      background:#f3f3f3;
    }

    .vision-mission-section::before{
      content:'';
      position:absolute;
      top:0;
      left:0;
      width:100%;
      height:90px;
      background:#ececec;
      clip-path:polygon(0 45%, 25% 0, 55% 0, 100% 45%, 100% 0, 0 0);
    }

    .vision-mission-section::after{
      content:'';
      position:absolute;
      bottom:0;
      left:0;
      width:100%;
      height:90px;
      background:#ececec;
      clip-path:polygon(0 100%, 0 55%, 30% 100%, 80% 100%, 100% 55%, 100% 100%);
    }

    .content-wrapper{
      position:relative;
      z-index:2;
      max-width: fit-content;
      margin:auto;
    }

    /* TOP ROW */

    .row{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:80px;
      margin-bottom:auto  ;
      flex-wrap:wrap;
    }

    .image-box img{
      width:400px;
      height:500px;
      object-fit:cover;
      display:block;
    }

    .text-box{
      max-width:450px;
    }

    .text-box h2{
      font-size:55px;
      color:#111;
      margin-bottom:20px;
      font-weight:400;
    }

    .text-box p{
      font-size:14px;
      line-height:1.9;
      color:#666;
    }

    /* SECOND ROW */

    .row.reverse{
      flex-direction:row-reverse;
    }

    /* Responsive */

    .customers-section{
      padding:100px 8%;
      text-align:center;
    }

    .customers-title{
      font-size:55px;
      font-weight:800;
      color:#111;
      margin-bottom:90px;
      letter-spacing:1px;
    }

    .logo-slider{
      overflow:hidden;
      position:relative;
      width:100%;
    }

    .logo-track{
      display:flex;
      align-items:center;
      gap:120px;
      animation:scroll 20s linear infinite;
      width:max-content;
    }

    .logo-item{
      flex-shrink:0;
      display:flex;
      align-items:center;
      justify-content:center;
    }

    .logo-item img{
      max-width:260px;
      height:auto;
      object-fit:contain;
      transition:0.3s;
    }

    .logo-item img:hover{
      transform:scale(1.05);
    }

    /* Animation */

    @keyframes scroll{

      0%{
        transform:translateX(0);
      }

      100%{
        transform:translateX(-50%);
      }
    }

    /* Responsive */

    @media(max-width:768px){

      .customers-title{
        font-size:38px;
        margin-bottom:60px;
      }

      .logo-track{
        gap:60px;
      }

      .logo-item img{
        max-width:180px;
      }

    }

.technology-section{
      padding:100px 8%;
      background:#f3f3f7;
    }

    .technology-wrapper{
      max-width:1200px;
      margin:auto;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:70px;
      flex-wrap:wrap;
    }

    .technology-title{
        font-size: 55px;
    }

    /* LEFT IMAGE AREA */

    .technology-image{
      position:relative;
      width:520px;
      max-width:100%;
    }

    .technology-image img{
      width:100%;
      display:block;
      clip-path:polygon(0 0, 100% 0, 100% 63%, 28% 100%, 0 63%);
    }

    /* Red Shape */

    .technology-image::after{
      content:'';
      position:absolute;
      width:420px;
      height:45px;
      bottom:45px;
      right:-20px;
      transform:rotate(-26deg);
    }

    /* RIGHT CONTENT */

    .technology-content{
      flex:1;
      min-width:320px;
      max-width:520px;
    }

    .technology-content h2{
      font-size:40px;
      font-style: normal;
      color:#111;
      margin-bottom:25px;
      font-weight:400;
    }

    .technology-content p{
      font-size:16px;
      line-height:1.9;
      color:#666;
    }

    .products-section{
      padding:80px 8%;
      text-align:center;
    }

    .products-title{
      font-size: 45px;
      font-weight:800;
      color:#111;
      margin-bottom:40px;
    }

    .top-text,
    .bottom-text{
      max-width:1000px;
      margin:auto;
      font: size 16px;
      line-height:1.5;
      color:#666;
      text-align: justify;
    }

    .top-text{
      margin-bottom:50px;
    }

    .bottom-text{
      margin-top:50px;
    }

    .products-grid{
      max-width:600px;
      margin:auto;
      display:grid;
      grid-template-columns:repeat(2, 1fr);
      
    }

    .product-card{
      background:#fffaf2;
      border:3px solid #e74c3c;
      padding:25px;
      margin: auto;
      transition:0.3s;
    }

    .product-card:hover{
      transform:translateY(-5px);
    }

    .product-card img{
      height:auto;
      margin: auto;
      object-fit: contain;
      margin-bottom:20px;
    }

    .product-card h3{
      font-size:34px;
      color:#111;
    }

    .section-container{
        max-width: fit-content;
        margin: 0 auto;
        padding:100px 8%;
      background:#f3f3f7;

    }

     .section-title {
            font-size: 45px;
            font-weight: 800;
            text-transform: uppercase;
            text-align: center;
            color: #000000;
            margin-bottom: 30px;
            letter-spacing: 0.5px;
        }

     /* Intro Paragraph */
        .intro-text {
            font-size: 18px;
            color: #666666;
            margin: auto;
            text-align: justify;
            margin-bottom: 30px;
            font-weight: 400;
        }

        /* Banner Image Wrapper */
        .image-container {
            max-width: 1100px;
            margin-bottom: 40px;
            height: auto;
            margin: auto;
            overflow: hidden;
        }

        .image-container img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        /* Subheading Rules */
        .sub-title {
            font-size: 26px;
            font-weight: 700;
            color: #0b0b45; /* Dark navy color matched from the image */
            margin-bottom: 15px;
        }

        /* Reasons List Styling */
        .reasons-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .reasons-list li {
            font-size: 16px;
            color: #666666;
            margin-bottom: 10px;
            position: relative;
            padding-left: 15px;
            line-height: 1.5;
        }

        /* Custom asterisk marker matching image_baa4f2.png */
        .reasons-list li::before {
            content: "*";
            position: absolute;
            left: 0;
            top: 0;
            color: #666666;
            font-weight: bold;
        }

        /* 3-Column Layout Grid */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            align-items: start;
        }

        /* individual Column stack container */
        .news-column {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        /* Card Container Styling */
        .news-card {
            background-color: #ffffff;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        /* Card Images setup */
        .news-card img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Text Content Overlay Box matching image_bb8625.png Layout */
        .news-content {
            background-color: #ffffff;
            padding: 20px;
            width: 90%;
            margin-top: -25px; /* Pulls text box upward overlapping the image */
            position: relative;
            z-index: 2;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
        }

        /* For cards that don't overlap but sit flush */
        .news-card.flush .news-content {
            margin-top: 0;
            width: 100%;
            box-shadow: none;
            padding: 20px 0;
        }

        .news-content p {
            font-size: 14px;
            font-weight: 700;
            line-height: 1.5;
            color: #000000;
        }

        /* Testimonials */
        .testimonials {
            background-color: #3ca4c3;
            color: white;
            padding-bottom: 25px;
            text-align: center;
        }
        
        .testimonial-slider {
            margin: 0 auto;
            position: relative;
        }
        
        .testimonial {
            padding: 2rem;
            display: none;
        }
        
        .testimonial.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        .testimonial-content {
            font-style: italic;
            margin-top: 100px;
            font-size: 1.1rem;
        }

        .testimonial-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .testimonial-author {
            font-weight: 600;
        }
        
        .testimonial-company {
            color: var(--highlight);
            font-size: 20px;
            margin-top: 25px;
            position: relative;
            display: inline-block;
            padding-bottom: 1rem;
        }
        
        .section {
            padding: 5rem 0;
        }
        

        .slider-controls {
            margin-top: 2rem;
        }
        
        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
        }
        
        .dot.active {
            background-color: white;
        }

        /* --- 1. Top Newsletter Subscription Bar --- */
        .subscribe-section {
            background-color: #f0f4f8; /* Light grey-blue tint matched from image_ca0340.png */
            padding: 30px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
        }

        .subscribe-title {
            font-size: 24px;
            font-weight: 700;
            color: #111111;
        }

        .subscribe-form {
            display: flex;
            align-items: center;
        }

        .subscribe-input {
            width: 280px;
            padding: 12px 15px;
            font-size: 14px;
            border: 1px solid #ffffff;
            outline: none;
            color: #666666;
        }

        .subscribe-input::placeholder {
            color: #999999;
        }

        .subscribe-btn {
            background-color: #ff0000; /* Vivid red matched button color */
            color: #ffffff;
            border: none;
            padding: 12px 25px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            border-radius: 4px;
            margin-left: -2px; /* Pulls slightly closer if needed */
            transition: background 0.2s ease;
        }

        .subscribe-btn:hover {
            background-color: #cc0000;
        }


        /* --- 2. Main Footer Area --- */
        .main-footer {
            background-color: #ffffff;
            padding: 60px 40px 20px 40px;
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 2fr 1fr; /* Left, Center, Right allocation */
            align-items: center;
            margin-bottom: 40px;
        }

        /* Social Icons (Left Stack) */
        .footer-socials {
            display: flex;
            gap: 12px;
            justify-content: flex-start;
        }

        .social-icon {
            width: 36px;
            height: 36px;
            border: 1px solid #cccccc;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999999;
            text-decoration: none;
            font-size: 14px;
            transition: all 0.2s ease;
        }

        .social-icon:hover {
            border-color: #ff0000;
            color: #ff0000;
        }

        /* Central Brand Section */
        .footer-brand {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .footer-logo {
            max-width: 240px;
            height: auto;
            display: block;
        }

        .brand-links-row {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .brand-link {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            color: #000000;
            text-decoration: none;
            letter-spacing: 0.5px;
        }

        /* Nav Links (Right Stack) */
        .footer-nav {
            display: flex;
            gap: 20px;
            justify-content: flex-end;
        }

        .nav-link {
            font-size: 13px;
            color: #333333;
            text-decoration: none;
        }

        .nav-link:hover {
            text-decoration: underline;
        }


        /* --- 3. Bottom Credits Line --- */
        .footer-bottom {
            text-align: center;
            border-top: 1px solid #ffffff; /* Transparent edge line spacing */
            padding-top: 20px;
            font-size: 12px;
            color: #666666;
        }

        .footer-bottom strong {
            color: #ff0000; /* Red emphasis on the brand name */
            font-weight: 600;
        }


        /* --- 4. Floating Back to Top Button --- */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 45px;
            height: 45px;
            background-color: #0f1035; /* Navy dark shade indicator */
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 16px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }

         /* Responsive Breakpoints */
        @media (max-width: 900px) {
            .subscribe-section {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            .footer-socials, .footer-nav {
                justify-content: center;
            }
        }