        :root {
            --primary-color: #2e86c1 ;
            --secondary-color: #21618c;
            --button-primary-color: #2e86c1;
            --button-secondary-color: #2874a6;
            --letter-Color: #1a5276;
            --button-text-color: #f7f9f9;
            --company-text-color: #2471a3;
            --company-header-font-size: 40px;    /* Company name font size - Header */
            --company-header-tagline-font-size: 16px;   /* Company tagline font size - Header */
            --company-footer-font-size: 29px;       /* Company name font size - Footer */
            --company-footer-tagline-font-size: 14px;   /* Company tagline font size - Footer */
            --header-menu-font-size: 22px;    /* Top menu font size */
            --heading-font-size: 2rem;   /* Page heading font size */
            --content-font-size: 1.25rem;   /* Page content font size */  
            --Stat-number-size: 40px;   /* About Stat number size */
            --Stat-text-bottom-size: 18px;   /* About Stat text size */
            --services-heading-size: 20px;
            --services-content-size: 17px;
            --footer-heading-font-size: 32px;   /* Page footer heading font size */
            --footer-content-font-size: 28px;   /* Page footer content font size */
            --content-font-color: #154360;
            --footer-background-color: #b3b6b7;
            --accent-color: #00bcd4;
            --light-bg: #f5f7fa;
            --dark-bg: #253545;
            --text-color: #333;
            --light-text: #fff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Calibri', Segoe UI, Verdana, Geneva, Sans Serif, Tahoma;
        }

        html{
            width: 100%;
            height: auto;
            overflow-x: hidden;
            max-width: 100vw;
        }

        body {
            line-height: 1.6;
            color: var(--text-color);
            overflow-x: hidden;
            max-width: 100vw;
        }

        img, video {
            max-width: 100%;
            height: auto;
        }

        /* Header Styles */

        header {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            z-index: 1000;
        }

        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 16px;
            flex-wrap: nowrap;
        }

        .header img {
            max-height: 50px;
        }

        .menu-toggle {
            font-size: 24px;
            cursor: pointer;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            margin-bottom: 0rem;
        }

        .navbar h1 {
            color: navy;
            font-size: 1.75rem;
            font-weight: bold;
            margin: 0; /* Remove default margins */
            line-height: 1; /* Adjust line height */
        }

        .navbar h6 {
            color: navy;
            font-size: 0.85rem;
            font-weight: bold;
            margin: 0; /* Remove default margins */
            margin-top: 0.5rem; /* Space between company name and tagline */
            padding-left: 9.25rem;
        }

      .logo-header {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        margin-left: 0rem;
        margin-top: 0rem;
        margin-bottom: 0rem;
        width: 100%;
        height: auto;
        gap: 0.75rem; /* Adjust spacing between logo and text */
       }

       .logo-h {
        height: 2.75rem;
        width: 2.75rem;
        padding-left: 0px;
        gap: 1px;
       }

       .company-info-header {
         display: flex;
         flex-direction: column;
         justify-content: center;
         align-items: flex-start;
         width: 100%;
         height: auto;
         margin-top: 0rem;
         margin-bottom: 0rem;
       }

       .company-info-header h1 {
         color: var(--company-text-color);
         font-size: 1.5rem;
         white-space: nowrap;
         overflow: hidden;
         text-overflow: ellipsis; 
         padding-top: 0.5rem;
        }

        .company-info-header h6 {
         color: var(--company-text-color);
         font-size: 0.85rem;
         padding-left: 6rem;
         padding-top: 0rem;
         margin: 0.25rem 0rem 0rem 0rem;
        }

        .menu {
         display: flex;
         flex-direction: row;
         justify-content: flex-end;
         align-items: flex-end;
         width: 100%;
         height: auto;
         padding: 1rem;
         flex-wrap: wrap;
         overflow-x: auto; /* Prevent hard overflow */
         max-width: 100%;
       }

        .menu a {
          text-decoration: none;
          color: var(--primary-color);
          font-weight: 650;
          padding: 0.75rem;
          font-size: 1.15rem;
          margin-top: 0%;
          margin-bottom: 0%;
       }

       .menu a:hover {
           transform: scale(1.15);
           transition: transform 0.25s ease-in-out;
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text-color);
            margin: 5px;
            transition: all 0.3s ease;
        }

        /* Hero Section */

        .hero {
            position: relative;
            height: 100vh;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
            padding-top: 0rem;
            margin-top: 0rem;
        }
        
        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -1;
        }
        
        .hero-content {
            position: relative;
            width: 100%;
            height: auto;
            padding: 0rem;
            margin-top: 0rem;
            z-index: 1;
        }
        
        /* Adjusted overlay for better video visibility */

        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: auto;
            background: rgba(1, 1, 1, 0);
        }   
        
        .hero h1 {
            display: block;
            font-size: 3rem;
            margin-top: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
        }

        /* About Section */

        .about {
            padding: 2.5rem 5%;
            margin-top: 0rem;
            margin-bottom: 0rem;
            background-color: #eaf2f8;
        }

        .about-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            margin-top: 0rem;
            gap: 3rem;
        }

        .about-image {
            flex: 1;
            min-width: 300px;
        }

        .about-image img {
            position: relative;
            top: auto;
            left: auto;
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 20px 30px rgba(0, 0, 0, 0.5);
        }

        .about-content {
            flex: 1;
            min-width: 300px;
        }

        .about-content h2 {
            font-size: var(--heading-font-size);
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .about-content p {
            font-size: var(--content-font-size);
            color: var(--content-font-color);
            margin-bottom: 1.5rem;
        }

        .stats-container {
            display: flex;
            flex-wrap: wrap;
            margin-top: 1.5rem;
            gap: 1rem;
        }

        .stat-item {
            flex: 1;
            min-width: 150px;
            text-align: center;
        }

        .stat-number {
            font-size: var(--Stat-number-size); 
            font-weight: 700;
            color:#76448a;
            margin-bottom: 0.15rem;
        }

        .stat-text {
            font-size: var(--Stat-text-bottom-size);
            font-weight: bold;
            color: var(--primary-color);
        }

        .btn-class {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
        }

        .btn {
            display: inline-block;
            flex-direction: row;
            justify-content: center;
            padding: 0.8rem 2rem;
            background-color: var(--button-primary-color);
            border-color: var(--button-primary-color);
            color: var(--button-text-color);
            text-decoration: none;
            border-radius: 0.75rem;
            width: 10.5rem;
            height: 3rem;
            text-align: center;
            font-size: 1.05rem;
            font-weight: 750;
            transition: all 0.5s ease;
            margin: 0.25rem;
        }

        .btn:hover {
            background-color: var(--button-secondary-color);
            border-color: var(--button-secondary-color);
            transform: translateY(-2px);
        }
    
        .buttons {
            background-color: var(--button-primary-color);
            border-color: var(--button-primary-color);
            color: var(--button-text-color);
            text-decoration: none;
            border-radius: 0.75rem;
            width: 12rem;
            height: 3.25rem;
            text-align: center;
            font-size: 1.15rem;
            font-weight: 750;
            transition: all 0.5s ease;
            margin: 0.5rem;
        }

        .buttons:hover {
            background-color: var(--button-secondary-color);
            color: var(--light-text);
            border-color: var(--button-secondary-color);
            transform: translateY(-2px);
        }

        button.btn-learn-more-btn {
            background-color: var(--button-primary-color);;
            border-color: var(--button-primary-color);
            color: var(--button-text-color);
            border-radius: 0.75rem;
            width: 12.5rem;
            height: 3.25rem;
            text-align: center;
            font-size: 1.15rem;
            font-weight: 750;
            transition: all 0.5s ease;
            margin: 0.5rem;
        }

        button.btn-learn-more-btn:hover {
            background-color: var(--button-secondary-color);
            color: var(--light-text);
            border-color: var(--button-secondary-color);
            transform: translateY(-2px);
        }

        .GetinTouch-btn {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
        }

        .Email {
          display: flex;
          flex-direction: row;
          justify-content: center;
         }
         
        /* Services Section */
        .services {
            padding: 2.5rem 5%;
            margin-top: 0rem;
            margin-bottom: 0rem;
            background-color: var(--light-bg);
        }

        .section-title {
            text-align: center;
            margin-bottom: 0rem;
        }

        .section-title h2 {
            font-size: var(--heading-font-size);
            color: var(--primary-color);
            margin-top: auto;
            margin-bottom: auto;
            padding-bottom: 0rem;
        }

        .section-title p {
            font-size: var(--content-font-size);
            max-width: 750px;
            margin: 0 auto;
            color: var(--content-font-color);
            padding-bottom: 1rem;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(5, 2fr);
            gap: 0.75rem;
        }
       
        .service-card {
            background-color: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-10px);
        }

        .service-img {
            height: 200px;
            background-color: #ddd;
            overflow: hidden;
        }

        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-img img {
            transform: scale(1.1);
        }

        .service-content {
            flex: 1; /* Takes remaining space */
            display: flex;
            flex-direction: column;
            padding: 1.5rem;
        }

        .service-content h3 {
            font-size: var(--services-heading-size);
            text-align: center;
            margin-bottom: 0.25rem;
            color: var(--primary-color);
        }

        .service-content p {
            font-size: var(--services-content-size);
            text-align: center;
            flex-grow: 1;
            margin-top: 0rem;
            margin-bottom: 1rem;
            color: var(--content-font-color);
        }

        .learn-more-btn {
            margin-top: auto; /* Pushes button to bottom */
            border-radius: 10px;
            background-color: var(--primary-color);
            border: none;
        }

        /* Testimonials Section */

        .testimonials {
            padding: 2.5rem 5%;
            margin-top: 0rem;
            margin-bottom: 0rem;
            display: block;
            width: 100%;
            background-color: #eaf2f8;
        }

        .testimonials-container {
            position: relative;
            width: 100%;
            margin: 0rem;
            display: block;
            overflow: hidden;
        }

        .testimonials-slider {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial-slide {
            min-width: 100%;
            padding: 1rem;
        }

        .testimonial-card {
            background-color: #ecf0f1;
            padding: 2rem;
            border-radius: 10px;
            text-align: center;
            border-color: #2874a6;
            height: auto;
            min-height: 400px;
            box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.5);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .testimonial-quote {
            font-size: 20px;
            font-style: italic;
            margin-bottom: 1.5rem;
            color: #34495e;
        }

        .testimonial-author {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .author-avatar {
            width: 125px;
            height: 150px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 1rem;
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-name {
            font-weight: 600;
            font-size: 18px;
            color: var(--primary-color);
        }

        .author-title {
            font-size: 17px;
            font-weight: bold;
            color: #7d3c98;
        }

        .testimonial-controls {
            display: flex;
            justify-content: center;
            margin-top: 1rem;
        }

        .control-btn {
            background: var(--primary-color);
            color: #fff;
            width: 40px;
            height: 40px;
            border: none;
            border-radius: 50%;
            margin: 0 0.5rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.5s ease;
        }

        .control-btn:hover {
            background: var(--secondary-color);
        }

        /* Call To Action */
        .cta {
            padding: 2rem 0rem 2rem 0rem;
            margin: 0%;
            display: block;
            width: 100%;
            background-color: #566573;
            text-align: center;
            color: #f7f9f9;
        }

        .cta h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .cta p {
            max-width: 1000px;
            margin: 0 auto 2rem;
            font-size: 1.25rem;
        }

        /* Contact Section */

        .contact {
            padding: 2.5rem 5%;
            background-color: var(--light-bg);
        }

        .contact-container {
            display: flex;
            flex-wrap: wrap;
            gap: 3rem;
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
        }

        .info-item {
            display: flex;
            margin-bottom: 2rem;
            align-items: flex-start;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            font-size: 1.2rem;
        }

        .info-icon img {
            width: 50px;
            height: 50px;
            border-radius: 25%;
            font-size: 14px;
        }

        .info-content h3 {
            font-size: 1rem;
            margin-bottom: 0.75rem;
            color: var(--primary-color);
        }

        .info-content h4 {
            font-size: 1rem;
            margin-bottom: 0.25rem;
            color: var(--secondary-color);
        }

        .info-content a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .info-content p{
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .info-content a:hover {
            color: var(--primary-color);
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
        }

        .form-group {
            display: block;
            margin-bottom: 1.5rem;
            font-weight: 700;
            color: var(--secondary-color);
        }

        .form-control {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            transition: border 0.3s ease;
        }

        .form-control:focus {
            outline: none;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 150px;
        }

        /* Footer */

        footer {
            color: var(--light-text);
            padding: 2rem 2.5% 0rem;
            background-color: #eaf2f8;
        }

        .footer-container {
            display:flex;
            gap: 5rem;
            margin-bottom: 2rem;
            margin-left: -1.5rem;
        }

        .logo-footer {
            display: flex;
            justify-content: flex-start;
            min-width: 325px;
            height: 25rem;
            flex-wrap: nowrap;
            gap:0rem;
        }

        .logo-f {
        height: 2.75rem;
        width: 2.75rem;
        padding-left: 0px;
        max-height: 50px;
        flex-shrink: 0;
       }

        .company-info-footer {
         display: flex;
         justify-content: flex-start;
         align-items: flex-start;
         flex-direction: column;
         width: 100%;
         height: 25rem;
         margin-top: 0rem;
         margin-bottom: 0rem;
       }

        .company-info-footer h1 {
           color: var(--company-text-color);
           font-size: 1.5rem;
           margin-left: 0.5rem;
           margin-bottom: 0rem;
        }

        .company-info-footer p {
           color: var(--company-text-color);
           font-size: 0.85rem;
           margin: 0rem 0rem 0rem 5.5rem;
           padding: 0px 0px;
           font-weight: bold;
           text-align: center;
        }

        .footer-services h3 {
            font-size: var(--footer-heading-font-size);
            margin-bottom: 0rem;
            margin-left: 4rem;
            color: var(--primary-color);
        }

        .footer-links h4 {
            font-size: var(--footer-heading-font-size);
            margin-bottom: 0rem;
            margin-left: 6rem;
            color: var(--primary-color);
        }

        .footer-links-services {
            list-style:none;
            width: 100%;
            max-width: 100%;
        }

        .footer-links-services li {
            margin-bottom: 0.5rem;
            margin-left: 7rem;
        }

        .footer-links-services a {
            color: var(--secondary-color);
            display:block;
            font-size: 1.15rem;
            font-weight: bold;
            text-align: left;
            text-decoration: none;
            transition: color 0.3s ease;
            margin-left: 0rem;
        }
        
        .footer-links-services a:hover {
            color: var(--primary-color);
        }

        .footer-links-quick {
            list-style:none;
        }

        .footer-links-quick li {
            margin-bottom: 0.5rem;
            margin-left: 6.25rem;
        }

        .footer-links-quick a {
            color: var(--secondary-color);
            font-size: 1.15rem;
            font-weight: bold;
            text-align: left;
            text-decoration: none;
            transition: color 0.3s ease;
            margin-left: 3rem;
            margin-top: 0rem;
            margin-bottom: 0rem;
        }

        .footer-links-quick a:hover {
           color: var(--primary-color);
        }

        /*.social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: #fff;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background-color: var(--accent-color);
            transform: translateY(-5px);
        }*/

        .footer-bottom {
            left: 500px;
            bottom: 10px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            font-size: 20px;
            font-weight: bold;
            color: #7d3c98;
        }

        /* Popup Styles */
        .popup-overlay {
            display: none;
            position: fixed;
            top: 0; 
            left: 0;
            width: 100vw;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.6);
            z-index: 9999;
        }

        .popup-box {
            background-color: #f7f9f9;
            width: auto;
            height: auto;
            margin: 10% auto;
            padding: 30px;
            border-radius: 15px;
            border: 5px solid var(--secondary-color);
            position: absolute;
            
        }

        .close-btn {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: transparent;
            border: 2px solid #ccc;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            font-size: 18px;
            font-weight: bold;
            color: #333;
            cursor: pointer;
            text-align: center;
            line-height: 26px;
        }

        .close-btn:hover {
            color: #2e86c1;
            border-color: #2e86c1;
        }

        .popup-content h1 {
            margin-top: 0;
            font-size: 26px;
            color: #0b5345;
        }

        .popup-content p {
            font-size: 18px;
            color: #154360;
            text-align: left;
        }

        .popup-content ul {
            font-size: 17px;
            color: #154360;
            text-align: left;
            padding-left: 20px;
        }

       /* Add to your existing popup styles */
        .popup-image {
            max-width: 100%;
            height: auto;
            max-height: 300px; /* Adjust this value as needed */
            width: auto;
            margin: 0 auto;
            display: block;
            object-fit: contain;
            border-radius: 8px;
        }

        /* Responsive Styles */
        @media (min-width: 768px) {
            .popup-box {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                margin: 0;
            }
        }

        /* For smaller screens */
        @media (max-width: 768px) {
            .popup-box {
                margin: 1rem auto;
            }

            .burger {
                display: block;
            }

            .services-grid {
                grid-template-columns: 1fr;
                align-items: stretch;
            }

            .about-container {
                flex-direction: column;
            }

            .stat-item {
                min-width: 120px;
                color: var(--primary-color);
            }

            .contact-container {
                flex-direction: column;
            }
            
            .popup-box {
                width: 90%;
                margin: 20% auto;
                padding: 20px;
            }
        }

        @media (min-width: 600px) {
        .btn-class {
            flex-direction: row;
        }
        }

        /* Newly added code for header alignment issue fix */
        
        @media (max-width: 768px) { 
        .navbar {
            flex-direction: column;
            align-items: flex-start;
            padding: 1rem 2%;
        }

        .logo-header {
            width: 100%;
            flex-direction: row;
            justify-content: flex-start;
            align-items: center;
            gap: 0.75rem;
        }

        .menu {
            display: none;
            flex-direction: column;
            width: 100%;
            background-color: #fff;
            border-top: 1px solid #ccc;
        }

        .menu a {
            padding: 0.75rem 1rem;
            font-size: 1rem;
            border-bottom: 1px solid #eee;
        }

        .menu.show {
            display: flex;
        }

        .burger {
            display: block;
            align-self: flex-end;
        }
        }

        @media (max-width: 1024px) {
        .services-grid {
            grid-template-columns: repeat(2, 1fr); /* Tablets */
        }
        }

        @media (max-width: 768px) {
        .services-grid {
            grid-template-columns: 1fr; /* Phones */
        }
        }

        @media (max-width: 510px) {
            .menu {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #fff;
                border-top: 1px solid #ccc;
            }

            .menu.show {
                display: flex;
            }
        }

        @media (max-width: 375px) {
        .company-info-header h1 {
            font-size: 1.2rem;
        }
        .company-info-header h6 {
            font-size: 0.75rem;
            overflow: hidden;
        }
        .company-info-footer h1 {
            font-size: 1.2rem;
        }
        .company-info-footer p {
            font-size: 0.75rem;
            overflow: hidden;
        }
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .fade-in {
            animation: fadeIn 1s ease forwards;
        }

        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }
        
        .required-star {
        color: red;
        margin-left: 2px;
        }

        .service-btn1, .service-btn2, .service-btn3, .service-btn4, .service-btn5, .service-btn6, .service-btn7, .service-btn8, .service-btn9, .service-btn10 {
            display: flex;
            flex-direction: row;
            justify-content: center;
        }

 