 
        :root {
            --navy: #0d2f5ed6;
            --navy-dark: #051b38f2;
            --navy-light: #1a4b8c;
            --teal: #20c997;
            --teal-dark: #149672;
            --cyan: #464fb7;
            --white: #ffffff;
            --light: #f8f9fa;
            --gray: #6c757d;
            --dark-text: #212529;
            --light-text: #ffffff;
            --transition: all 0.3s ease-in-out;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--dark-text);
            overflow-x: hidden;
            line-height: 1.6;
            background: var(--light);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        a {
            text-decoration: none;
            transition: var(--transition);
        }
        
        /* Navigation - IMPROVED DROPDOWN STYLES */
     /*   .navbar {
            background: linear-gradient(90deg, var(--navy-light) 20%, var(--navy) 80%);
            backdrop-filter: blur(10px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            padding: 12px 0;
            transition: var(--transition);
        }
        
        .navbar.sticky {
            padding: 8px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            background: rgba(13, 47, 94, 0.95);
        }
        
        .navbar-brand img {
            height: 45px;
            transition: var(--transition);
        }
        
        .navbar-nav .nav-link {
            color: var(--light-text);
            font-weight: 500;
            padding: 10px 15px !important;
            position: relative;
            display: flex;
            align-items: center;
        }
        
        .navbar-nav .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 5px;
            left: 15px;
            background-color: var(--teal);
            transition: var(--transition);
        }
        
        .navbar-nav .nav-link:hover:after,
        .navbar-nav .nav-link.active:after {
            width: calc(100% - 30px);
        }
        
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--teal);
        }
        
        /* Mobile Menu Header */
       /* .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            margin-bottom: 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .mobile-menu-logo {
            height: 40px;
        }
        
        .mobile-menu-close {
            background: none;
            border: none;
            color: var(--light-text);
            font-size: 1.5rem;
        }
        
        /* ENHANCED DROPDOWN STYLES */
       /* .dropdown-menu {
            border: none;
            background: var(--navy-light);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border-radius: 10px;
            padding: 15px 0;
            margin-top: 10px;
            border-top: 3px solid var(--teal);
            min-width: 240px;
            animation: fadeIn 0.3s ease;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .dropdown-item {
            padding: 12px 25px;
            color: var(--light-text);
            position: relative;
            transition: var(--transition);
            font-weight: 400;
            border-left: 3px solid transparent;
            display: flex;
            align-items: center;
        }
        
        .dropdown-item:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 0;
            height: 100%;
            background: rgba(255, 255, 255, 0.05);
            transition: var(--transition);
        }
        
        .dropdown-item:hover:before {
            width: 100%;
        }
        
        .dropdown-item:hover {
            background: transparent;
            color: var(--teal);
            border-left-color: var(--teal);
            padding-left: 30px;
        }
        
        .dropdown-item i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
            font-size: 14px;
        }
        
        /* Enhanced dropdown behavior for desktop */
    /*    @media (min-width: 992px) {
            .dropdown:hover .dropdown-menu {
                display: block;
                margin-top: 0;
            }
            
            /* Improved dropdown arrow */
        /*    .navbar-nav .nav-item.dropdown > .nav-link::after {
                content: '\f078';
                font-family: 'Font Awesome 5 Free';
                font-weight: 900;
                margin-left: 8px;
                border: none;
                display: inline-block;
                transition: var(--transition);
                font-size: 12px;
            }
            
            .navbar-nav .nav-item.dropdown:hover > .nav-link::after {
                transform: rotate(180deg);
                color: var(--teal);
            }
            
            /* Smooth dropdown animation */
          /*  .dropdown-menu {
                display: block;
                opacity: 0;
                visibility: hidden;
                transform: translateY(15px);
                transition: all 0.3s ease;
            }
            
            .dropdown:hover .dropdown-menu {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }
            
            /* Make dropdown parent links clickable */
         /*   .navbar-nav .dropdown > .nav-link {
                cursor: pointer;
            }
        }
        
        /* Mobile dropdown styles */
      /*  @media (max-width: 991.98px) {
            .dropdown-menu {
                background: rgba(255, 255, 255, 0.05);
                margin-top: 5px;
                border-radius: 5px;
                border-top: 2px solid var(--teal);
                position: static !important;
                transform: none !important;
                width: 100%;
                box-shadow: none;
                border: none;
            }
            
            .dropdown-item {
                padding-left: 40px;
                color: var(--light-text);
                border-left: none;
            }
            
            .dropdown-item:hover {
                background: rgba(255, 255, 255, 0.1);
                padding-left: 40px;
            }
            
            .navbar-nav .nav-item.dropdown > .nav-link::after {
                content: '\f078';
                font-family: 'Font Awesome 5 Free';
                font-weight: 900;
                margin-left: auto;
                border: none;
                transition: var(--transition);
            }
            
            .navbar-nav .nav-item.dropdown.show > .nav-link::after {
                transform: rotate(180deg);
            }
            
            /* Show all submenus on mobile */
            /*.navbar-nav .dropdown-menu {
                display: block !important;
                opacity: 1 !important;
                visibility: visible !important;
                transform: none !important;
                position: static !important;
                float: none;
                width: 100%;
                margin-top: 0;
            }
            
            .navbar-nav .dropdown-menu .dropdown-item {
                padding-left: 60px;
            }
            
            .navbar-nav .dropdown-menu .dropdown-menu {
                margin-left: 20px;
            }
        }

        /* Hero Carousel */
        .carousel-item {
            height: 100vh;
            min-height: 600px;
            background-position: center;
            background-size: cover;
            position: relative;
        }
        
        .carousel-item:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(13, 47, 94, 0.85), rgba(13, 47, 94, 0.7));
        }
        
        .carousel-item:nth-child(1) {
            background-image: url('../assets/Images/SlideDeck/office4.jpg');
        }
        
        .carousel-item:nth-child(2) {
            background-image: url('../assets/Images/SlideDeck/office8.1.jpg');
        }
        
        .carousel-item:nth-child(3) {
            background-image: url('../assets/Images/SlideDeck/office13.jpg');
        }
        
        .carousel-caption {
            top: 50%;
            transform: translateY(-50%);
            bottom: auto;
            text-align: left;
            padding: 0 5%;
        }
        
        .carousel-caption h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            animation: fadeInUp 1s ease;
            color: var(--light-text);
        }
        
        .carousel-caption p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            max-width: 600px;
            animation: fadeInUp 1.2s ease;
            color: var(--light-text);
        }
        
        .ExploreBtn {
            display: inline-block;
            padding: 12px 30px;
            background: var(--teal);
            color: white;
            border-radius: 50px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            animation: fadeInUp 1.4s ease;
        }
        
        .ExploreBtn:hover {
            background: var(--teal-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .carousel-control-prev, .carousel-control-next {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.7;
            transition: var(--transition);
        }
        
        .carousel-control-prev {
            left: 20px;
        }
        
        .carousel-control-next {
            right: 20px;
        }
        
        .carousel-control-prev:hover, .carousel-control-next:hover {
            opacity: 1;
            background: var(--teal);
        }
        
        .carousel-indicators button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin: 0 5px;
            background-color: var(--light-text);
        }
        
        .carousel-indicators .active {
            background-color: var(--teal);
        }
        
        /* Common Section Styles */
        .section-padding {
            padding: 30px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        .section-title h2 {
            color: var(--navy);
            font-size: 2.2rem;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        /* Features Section */
        .features-list-item {
            text-align: center;
            padding: 25px;
            border-radius: 10px;
            transition: var(--transition);
            background: white;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            position: relative;
            overflow: hidden;
            margin-bottom: 25px;
        }
        
        .features-list-item:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
        }
        
        .features-list-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .features-list-item .icon {
            display: inline-block;
            width: 70px;
            height: 70px;
            line-height: 70px;
            background: rgba(32, 201, 151, 0.1);
            border-radius: 50%;
            margin-bottom: 20px;
        }
        
        .features-list-item .icon i {
            color: var(--teal);
            font-size: 1.8rem;
        }
        
        .features-list-item h4 {
            color: var(--navy);
            margin-bottom: 15px;
        }
        
        /* Welcome Note */
        .Welcomenote {
            text-align: center;
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
            color: var(--light-text);
            position: relative;
            overflow: hidden;
        }
        
        .Welcomenote:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: rgba(255, 255, 255, 0.05);
            transform: rotate(30deg);
        }
        
        .Welcomenote h3 {
            color: var(--light-text);
            position: relative;
            display: inline-block;
            margin-bottom: 25px;
        }
        
        .Welcomenote h3:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background: var(--teal);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .Welcomenote p {
            max-width: 800px;
            margin: 0 auto 20px;
            font-size: 1.1rem;
        }
        
      .aboutSSVN {
    background: var(--light);
    padding: 60px 0;
}

.aboutSSVN .image-container {
    padding: 0;
    overflow: hidden;
}

.aboutSSVN img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.aboutSSVN .matterdiv {
    padding: 40px 60px;
}

.aboutSSVN h2 {
    color: var(--navy);
    margin-bottom: 25px;
}

.aboutSSVN p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Responsive fix */
@media (max-width: 991px) {
    .aboutSSVN .matterdiv {
        padding: 30px;
        text-align: center;
    }

    .aboutSSVN img {
        max-height: 400px;
        border-radius: 0;
    }
}

        /* Services Blocks */
        .services-item {
            text-align: center;
            padding: 25px 20px;
            transition: var(--transition);
            border-radius: 10px;
            margin-bottom: 25px;
            background: white;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }
        
        .services-item:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
        }
        
        .services-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            width: 70px;
            height: 70px;
            line-height: 70px;
            background: rgba(32, 201, 151, 0.1);
            border-radius: 50%;
            margin: 0 auto 20px;
        }
        
        .service-icon i {
            color: var(--teal);
            font-size: 1.8rem;
        }
        
        .services-item h4 {
            color: var(--navy);
            margin-bottom: 15px;
        }
        
        /* Side-by-side Sections */
        .side-by-side-section {
            background: var(--light);
        }
        
        .side-by-side-section .image-container {
            padding: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .side-by-side-section .image-container img {
            width: 100%;
            max-width: 500px;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .side-by-side-section .content-container {
            padding: 20px 30px;
        }
        
        .side-by-side-section h3 {
            color: var(--navy);
            margin-bottom: 20px;
        }
        
        .side-by-side-section ul {
            padding-left: 20px;
            margin-bottom: 25px;
        }
        
        .side-by-side-section li {
            margin-bottom: 10px;
            position: relative;
        }
        
        .side-by-side-section li:before {
            font-weight: bold;
            margin-right: 10px;
        }
        
        /* Industries We Serve Section */
        .industry-card {
            text-align: center;
            padding: 25px 20px;
            border-radius: 10px;
            transition: var(--transition);
            background: white;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            height: 100%;
            margin-bottom: 25px;
            position: relative;
            overflow: hidden;
        }
        
        .industry-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
        }
        
        .industry-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .industry-icon {
            width: 70px;
            height: 70px;
            line-height: 70px;
            background: rgba(32, 201, 151, 0.1);
            border-radius: 50%;
            margin: 0 auto 20px;
        }
        
        .industry-icon i {
            color: var(--teal);
            font-size: 1.8rem;
        }
        
        .industry-card h4 {
            color: var(--navy);
            margin-bottom: 15px;
        }
        
        /* Insights Section */
        .insight-card {
            border-radius: 10px;
            overflow: hidden;
            background: white;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            height: 100%;
            margin-bottom: 25px;
        }
        
        .insight-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .insight-img {
            height: 200px;
            overflow: hidden;
        }
        
        .insight-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .insight-card:hover .insight-img img {
            transform: scale(1.1);
        }
        
        .insight-content {
            padding: 20px;
        }
        
        .insight-meta {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: var(--gray);
        }
        
        .insight-meta i {
            margin-right: 5px;
            color: var(--teal);
        }
        
        .insight-meta span {
            margin-right: 15px;
        }
        
        .insight-content h4 {
            color: var(--navy);
            margin-bottom: 15px;
        }
        
        .read-more {
            color: var(--teal);
            font-weight: 500;
            display: inline-flex;
            align-items: center;
        }
        
        .read-more i {
            margin-left: 5px;
            transition: var(--transition);
        }
        
        .read-more:hover i {
            transform: translateX(5px);
        }
        
        /* Careers Section */
        .carrers {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
            color: var(--light-text);
        }
        
        .carrers .title {
            text-align: center;
            color: var(--light-text);
            margin-bottom: 40px;
            position: relative;
        }
        
        .carrers .title:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background: var(--teal);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .carrer-grid {
            background: rgba(255, 255, 255, 0.1);
            padding: 25px;
            border-radius: 10px;
            transition: var(--transition);
            height: 100%;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            margin-bottom: 25px;
        }
        
        .carrer-grid:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .carrer-grid h4 {
            color: var(--light-text);
            margin-bottom: 15px;
        }
        
        .carrer-grid a {
            color: inherit;
        }
        
        .carrer-grid a:hover {
            color: var(--teal);
        }
        
        /* Contact Section - Responsive */
        #contact-area {
            position: relative;
        }
        
        #map {
            height: 400px;
            background: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--navy);
            font-weight: 600;
        }
           .contact-box {
            position: relative;
            width: 100%;
            background: white;
            border-radius: 15px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
            padding: 30px;
            margin: -80px auto 40px;
            max-width: 1200px;
        }
        
        .contact-us-info h3, .get-in-touch h3 {
            color: var(--navy);
            margin-bottom: 20px;
            position: relative;
        }
        
        .contact-us-info h3:after, .get-in-touch h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--teal);
            bottom: -10px;
            left: 0;
        }
        
          .contact-info li { 
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }
        .contact-info li i {
            position: absolute;
            left: 0;
            top: 5px;
            color: var(--teal);
            font-size: 18px;
        }
        
        .get-in-touch p {
            margin-bottom: 20px;
        }
        
        .form-control {
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #e1e1e1;
            margin-bottom: 15px;
            transition: var(--transition);
        }
        
        .form-control:focus {
            border-color: var(--teal);
            box-shadow: 0 0 0 0.25rem rgba(32, 201, 151, 0.25);
        }
        
        .Sendbtn {
            padding: 12px 30px;
            background: linear-gradient(90deg, var(--teal) 0%, var(--cyan) 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
            width: 100%;
        }
        
        .Sendbtn:hover {
            background: linear-gradient(90deg, var(--teal-dark) 0%, var(--cyan) 100%);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        /* Footer */
     /*   .footer {
            background: var(--navy-dark);
            padding: 60px 0 0;
            color: var(--light-text);
        }
        
        .footer h4 {
            color: var(--light-text);
            margin-bottom: 20px;
            position: relative;
        }
        
        .footer h4:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background: var(--teal);
            bottom: -10px;
            left: 0;
        }
        
        .footer .listInFooter li {
            margin-bottom: 10px;
        }
        
        .footer .listInFooter a {
            color: rgba(255, 255, 255, 0.8);
            transition: var(--transition);
        }
        
        .footer .listInFooter a:hover {
            color: var(--teal);
            padding-left: 5px;
        }
        
        .serviceblock li {
            padding-left: 30px;
            position: relative;
        }
        
        .serviceblock li i {
            position: absolute;
            left: 0;
            top: 5px;
            color: var(--teal);
        }
        
        .bottomfooter {
            background: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            margin-top: 40px;
            color: var(--light-text);
        }
        
        /* Back to top */
     /*   #back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--teal) 0%, var(--cyan) 100%);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        #back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        #back-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Styles */
        @media (max-width: 1199.98px) {
            .carousel-caption h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 991.98px) {
            .navbar {
                padding: 10px 0;
            }
            
            .carousel-item {
                height: 70vh;
            }
            
            .carousel-caption h1 {
                font-size: 2.2rem;
            }
            
            .carousel-caption p {
                font-size: 1rem;
            }
            
            .section-padding {
                padding: 50px 0;
            }
            
            .aboutSSVN .matterdiv {
                padding: 30px;
            }
            
            .side-by-side-section .content-container {
                padding: 20px;
            }
            
            /* Stack sections on mobile */
            .side-by-side-section .image-container {
                order: 2;
                margin-top: 20px;
            }
            
            .side-by-side-section .content-container {
                order: 1;
            }
            
            .contact-box {
                margin: -60px auto 30px;
                padding: 25px;
            }
            
            #map {
                height: 350px;
            }
        }
        
        @media (max-width: 767.98px) {
            .carousel-item {
                height: 60vh;
            }
            
            .carousel-caption {
                text-align: center;
            }
            
            .carousel-caption h1 {
                font-size: 1.8rem;
            }
            
            .carousel-caption p {
                font-size: 0.9rem;
            }
            
            .section-padding {
                padding: 40px 0;
            }
            
            .section-title {
                margin-bottom: 30px;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .aboutSSVN .matterdiv {
                padding: 20px;
            }
            
            .footer {
                padding: 40px 0 0;
            }
            
            .footer-section {
                margin-bottom: 30px;
            }
            
            .contact-box {
                margin: -50px auto 20px;
                padding: 20px;
            }
            
            #map {
                height: 300px;
            }
        }
        
        @media (max-width: 575.98px) {
            .carousel-caption h1 {
                font-size: 1.6rem;
            }
            
            .ExploreBtn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
            
            .section-padding {
                padding: 30px 0;
            }
            
            .section-title h2 {
                font-size: 1.6rem;
            }
            
            .button1 {
                padding: 10px 25px;
                font-size: 0.9rem;
            }
            
            .contact-box {
                margin: -40px auto 15px;
                padding: 15px;
            }
            
            #map {
                height: 250px;
            }
            
            #back-to-top {
                bottom: 15px;
                right: 15px;
                width: 40px;
                height: 40px;
            }
        }
   

  