@import url('https://fonts.googleapis.com/css2?family=Acme&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans&family=Poppins:wght@300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

* {
    margin: 0;
    padding: 0;
  
    box-sizing: border-box;
    text-decoration: none;
    border: none;
    outline: none;
    scroll-behavior: smooth;
    list-style-type: none;
}

:root {
    --bg-color: #1f242d;
    --second-bg-color: #323946;
    --text-color: #fff;
    --main-color: #0ef;
    --main2-color: #f9004d;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}

body {
    background: #E6F7FF;
    /* font-family: "Roboto", sans-serif; */
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  font-style: normal;
}


h1,h2,h3,h4,h5,h6{
    font-family: "Merriweather", serif;
    font-size: 4rem;
    font-weight: 700;
}


section {
    height: 100%;
    width: 100%;
    overflow: hidden;
}




.navbar {
    display: flex;
    justify-content: space-between;
    /* font-family: "montserrat", sans-serif; */
   
    list-style: none;
    padding: 0;
    margin: 0;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
   
    align-items: center;
    padding: 30px 30px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    transition: background-color 0.3s, padding 0.3s; /* Animation for background and padding */
    z-index: 1000; /* Ensures navbar is on top */
    background-color: #fff; /* Initially transparent */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow effect */
}

.navbar.scrolled {

    /* background-color: rgba(255, 255, 255, 0.8);  */
    background-color: rgba(255, 255, 255, 1);            
    padding: 20px 20px;         
}


.menu-toggle {
    display: none; /* Hidden by default, shown on mobile */
    font-size: 28px; /* Hamburger icon size */
    color: #000;
    cursor: pointer; /* Pointer cursor on menu toggle */
}

.nav-links ul {
    list-style-type: none;
    display: flex;
    gap: 8px; /* Space between links */
}

.nav-links ul li{
   
}

nav ul li {
    margin-top: 10px;
    flex: 1; /* Ensures all items have equal width */
    text-align: center; /* Centers the text in each link */
}


.nav-links a {

    display: block;
    padding: 8px 0px; /* Increase padding to provide more space */
    color: white;
    text-decoration: none;
    text-align: center;
    white-space: nowrap; /* Prevents text from wrapping */
    transition: background-color 0.3s ease;
    width: 100px;
        font-family: "Roboto", Sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
    outline: none;
   color: #0056b3;
   text-transform: uppercase;
    line-height: 22px;

    transition: color 0.3s; 
    border-radius: 4px;

}

.nav-links a:hover {
    background-color: #0056b3; /* Darker blue on hover */
    color: #fff;
}

/* Active Link Effect */
.nav-links a.active {
    background-color: #007bff; /* Darker blue on hover */
    color: #fff;
}

.menu-toggle {
    font-size: 24px;

    background: #007bff;
    padding: 5px 10px;
    border-radius: 4px;
    transition: all 0.3s;
}

.menu-toggle:hover {
    
    background:#000;
    color: #007bff;

}



/* Responsive Design */

@media (max-width: 1200px){
    .nav-links a{
        width: 100%;
        padding: 10px 10px;
    }
}


@media (max-width: 1024px) {
    .navbar {
        justify-content: space-between; /* Space between logo and toggle */
        background-color: #fff;
       
    }

    .menu-toggle {
        display: block; /* Show hamburger icon */
    }

    .nav-links {
        position: absolute; /* Position it absolutely */
        top: 98px; /* Below the navbar */
        left: 0;
        width: 100%;
        background-color: #fff; /* Dark background */
        overflow: hidden; /* Hide overflowing content for transition */
        max-height: 0; /* Initially collapsed */
        transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out; /* Slide down effect */
    
    }

    .nav-links.active {
        max-height: 450px; /* Expand height when active */
       
    }

    .nav-links ul {
        flex-direction: column; /* Stack links vertically */
        width: 100%; /* Full width */
        padding: 0; /* Reset padding */
        /* padding-bottom: 20px; */
       gap: 0;
      
    }

    .nav-links ul li{
    
        width: 100vw;
        margin-top: 0;
    }

    .nav-links a {
        padding: 15px 20px; /* Add padding to the links */
        width: 100%; /* Full width for links */
        text-align: center; /* Center text */
    }
}



#logo-container {
    display: inline-block;
    max-width: 280px; /* Maximum width for larger screens */
    margin-top: -20px;
    width: 100%; /* Ensures the logo container is fluid */
    margin-right: 20px;
}

#logo-container img {
    padding-top: 10px;
    width: 100%; /* Image takes full width of container */
    height: auto; /* Maintains aspect ratio */
    display: block;
}



/* Responsive adjustments for smaller screens */




@media (max-width: 768px) {
    .nav-links{
        top: 84px; 
    }

    #logo-container {
        max-width: 200px; /* Reduce logo size for tablets */
    }
}

@media (max-width: 480px) {
    #logo-container {
        max-width: 150px; /* Further reduce logo size for small mobile screens */
    }
}


/* Responsive adjustments for smaller screens */




@media (max-width: 768px) {
    #logo-container {
        max-width: 200px; /* Reduce logo size for tablets */
    }
}

@media (max-width: 480px) {
    #logo-container {
        max-width: 150px; /* Further reduce logo size for small mobile screens */
    }
}



/* /////////////////////////////////////////////////////////////////////////////////// */


/* Hero Section */
.hero-section {
    position: relative;
    margin-top: 97px;
    width: 100%;
    height: 80vh; /* Default height for large screens */
    background-image: url('img/contactHero.jpg'); /* Background Image */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    overflow: hidden;
}

.split-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for contrast */
    filter: blur(10px); /* Initial blur effect */
    transition: filter 1.5s ease-in-out; /* Transition for blur */
    clip-path: inset(0 50% 0 50%); /* Start with the image split in the middle */
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centering the content */
    text-align: center;
    color: white;
    z-index: 2;
    opacity: 0; /* Hidden by default */
    transition: opacity 1.5s ease-in-out; /* Fade in the text */
}

.hero-section h1 {
    width: 80vw;
    font-size: 5rem;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.hero-section p {
    font-size: 2rem;
}



/* After the page loads */
body.loaded .split-overlay {
    filter: blur(0); /* Remove blur */
    animation: splitOpen 1.5s ease forwards; /* Expand to the sides */
}

body.loaded .hero-content {
    opacity: 1; /* Fade in the text */
    transition-delay: 0s; /* No delay - text fades in at the same time */
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-section {
        height: 80vh; /* Adjust height for large tablets */
    }
    .hero-section h1 {
        font-size: 3.5em; /* Adjust font size */
    }
    .hero-section p {
        font-size: 1.3em;
    }

    .hero-content{
        margin-top: 30px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        height: 75vh; /* Adjust height for tablets */
    }
    .hero-section h1 {
        font-size: 3em; /* Adjust font size */
    }
    .hero-section p {
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 60vh; /* Reduce height for mobile view */
    }
    .hero-section h1 {
        font-size: 2.5em; /* Smaller font size for mobile */
        width: 90vw; /* Adjust the text container */
    }
    .hero-section p {
        font-size: 1.1em;
    }

    .hero-content{
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 50vh; /* Further reduce height on smaller screens */
    }
    .hero-section h1 {
        font-size: 2em; /* Reduce font size for smaller mobile screens */
    }
    .hero-section p {
        font-size: 1em;
    }
}

@media (max-width: 400px) {
    .hero-section {
        height: 45vh; /* Reduce height for very small screens */
    }
    .hero-section h1 {
        font-size: 1.8em; /* Even smaller font size */
    }
    .hero-section p {
        font-size: 0.9em;
    }

    .hero-content{
        margin-top: 30px;
    }
}



/* ////////////////////////////////////////////////////////////////////////////// */



.why-choose-us {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    margin: 100px auto;
    /* background-color: #FFFFF0; */
    font-family: Arial, sans-serif;
    position: relative;
    max-width: 1500px;
    width: 100%;
}

/* Adjust text size to be responsive */
.why-choose-us h2,
h3,
p,
li {
    font-size: calc(.8rem + 0.5vw);
    /* Scales the text size based on the viewport width */
}

.left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    text-align: center;
}

.circle {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6c4ee3, #9b79ff);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: calc(2.5rem + 1vw);
    /* Responsive font size */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: all 0.5s ease;
}

.circle:hover {
    background: linear-gradient(135deg, #9b79ff, #6c4ee3);
    transform: scale(1.1);
}

.circle h2 {
    font-size: calc(2.5rem + 1vw);
    font-weight: 700;
}

.icon-list {
    max-width: 90%;
    color: #666;
    font-size: calc(1rem + 0.3vw);
    line-height: calc(2rem + 0.5vw);
    text-align: justify;
    list-style-type: none;
    padding-left: 0;
}

.icon-list li {
    position: relative;
    padding-left: 40px;
    text-indent: -20px;
}

/* .icon-list li::before {
    content: '✔️';
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 0;
    color: black;
} */

.icon-list li::before {
    content: "✔"; /* Use this for the icon */
    position: absolute;
    left: 0; /* Align the icon to the left */
    top: 0;
    color: #007bff; /* Icon color */
    font-size: 18px; /* Adjust icon size if needed */
    margin-right: 10px; /* Space between the icon and the text */
}

.right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 20px;
}

.icon-box {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.icon {
    width: 52px;
    height: 36px;
    border-radius: 50%;
    background-color: #6c4ee3;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: calc(1.2rem + 0.5vw);
    transition: all 0.3s ease;
}

.icon-box:hover .icon {
    background-color: #9b79ff;
    transform: scale(1.2);
}

.text h3 {
    margin: 0;
    font-size: calc(1.5rem + 0.5vw);
    color: #333;
    transition: color 0.3s ease;
    margin-bottom: 10px;
}

.text p {
    margin: 0;
    font-size: calc(1.3rem + 0.3vw);
    color: #a1a0a0;
    transition: color 0.3s ease;
}

/* Hover effects for text */
.icon-box:hover .text h3 {
    color: #6c4ee3;
}

.icon-box:hover .text p {
    color: #333;
}

/* Vertical connector line */
.right-content::before {
    content: "";
    position: absolute;
    left: 49%;
    width: 2px;
    height: 100%;
    background-color: #ddd;
    top: 0;
}

/* Connect the icons */
.icon-box::before {
    content: "";
    position: absolute;
    width: 2px;
    height: 40px;
    background-color: #ddd;
    left: 50%;
    top: -20px;
}

.icon-box:first-child::before {
    display: none;
}




/* Responsive styling */

@media (min-width: 1024px) {

    .text h3 {
        font-size: calc(1.4rem + 0.5vw);
    }

    .text p {
        font-size: calc(1.2rem + 0.3vw);
    }


}


@media (max-width: 1024px) {
    .circle {
        width: 250px;
        height: 250px;
    }

    .text h3 {
        font-size: calc(1.2rem + 0.5vw);
    }

    .text p {
        font-size: calc(0.9rem + 0.3vw);
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        flex-direction: column;
        padding: 20px;
        margin-bottom: 50px;
    }

    .left-content,
    .right-content {
        width: 100%;
        text-align: center;
    }

    .right-content {
        padding-left: 0;
    }


    .left-content {
        margin-bottom: 20px;
    }

    .circle {
        width: 200px;
        height: 200px;
    }

    .right-content::before {
        width: 0px;
        height: 0px;
    }
}

@media (max-width: 480px) {
    .circle {
        width: 150px;
        height: 150px;
        font-size: calc(1.5rem + 1vw);
    }

    .circle h2 {
        font-size: 2rem;
    }

    .text h3 {
        font-size: calc(1.2rem + 0.5vw);
    }

    .text p {
        font-size: calc(0.8rem + 0.3vw);
    }

    .icon {
        width: 50px;
        height: 40px;
        font-size: calc(1.2rem + 0.5vw);
    }
}


/* ///////////////////////////////////////////////////////////////////// */




/* Contact Header Section */
.contact-header {
    position: relative;
    height: 50vh;
    background: url('https://via.placeholder.com/1500x600') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.contact-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.contact-header h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    z-index: 1;
    font-family: 'Trebuchet MS', sans-serif;
    text-transform: uppercase;
}

.contact-header p {
    font-size: 1.5rem;
    z-index: 1;
    font-family: Arial, sans-serif;
    color: #f1f1f1;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.contact-section h2 {
    font-size: 4rem;
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* Contact Info Styling */
.contact-info {
    flex: 0.9;
    /* Slightly smaller than contact form */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-box {
    background-color: #f8f6ff;
    border: 4px solid #a3cfff;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.info-box:hover {
    transform: translateY(-10px);
}

.info-box i {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 10px;
}

.info-box h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    color: #333;
    font-family: Arial, sans-serif;
}

.info-box p {
    font-size: 1.6rem;
    color: #333;
    font-family: 'Arial', sans-serif;
}

/* Contact Form Styling */
/* Form Container */

.contact-form {
    flex: 1;
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #d1d1d1;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.2);
    text-align: left;
}




form input{
    position: relative;
    margin-bottom: 10px;
}

.input-box input,
.input-box textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.5rem;
}

/* Input Fields */
form input[type="text"],
form input[type="email"],
form input[type="email"],
form textarea {
    
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1.5rem;
    transition: border-color 0.3s ease;
   
}

/* Input Focus State */
form input[type="text"]:focus,
form input[type="email"]:focus,
form textarea:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0px 0px 8px rgba(0, 123, 255, 0.2);
}


/* Textarea */
form textarea {
    resize: vertical;
    height: 150px;
}

/* Submit Button */
form button[type="submit"] {
    width: 100%;
    padding: 12px;

    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    font-size: 1.3rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

/* Submit Button Hover */
form button[type="submit"]:hover {
    background-color: #0056b3;
}

/* Label Styling */
form label {
   
    font-size: 1.3rem;
    padding: 0 5px;
    color: #007bff;
   margin-top: 10px;
    font-size: 1.3rem;
    padding: 0 5px;
    color: #007bff;
}

/* Honeypot Field - Hidden */
.hidden {
    display: none;
}


/* Responsive Note Section */
.response-note {
    display: none;
    margin-top: 20px;
    padding: 15px;
    background-color: #f0f4ff;
    border-left: 5px solid #007bff;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.1);
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-in-out;
}

.response-note i {
    font-size: 1.7rem;
    color: #007bff;
    margin-right: 10px;
}

.response-note p {
    margin: 0;
    color: #333;
    font-size: 1.4rem;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 30px;
        /* Larger gap when stacked */
    }

    .contact-info {
        margin-right: 0;
        width: 100%;
    }

    .contact-form {
        width: 100%;
    }

    .contact-header h1 {
        font-size: 3rem;
    }

    .contact-header p {
        font-size: 1.2rem;
    }

    .contact-section h2 {
        font-size: 2.8rem;
    }

    .contact-section p {
        font-size: 1.3rem;
    }
}

/* Map Container */
.map-container {
    margin-top: 40px;
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.1);
}

/* Form Input Focus Effect */
.input-box input:focus,
.input-box textarea:focus {
    border-color: #007bff;
    outline: none;
}

/* Show the note after form submission */
form:valid+.response-note {
    display: block;
    opacity: 1;
    transform: translateY(0);
}


/* ////////////////////////////////////////////////////////////// */

.map-section {
    text-align: center;
    margin: 50px 0;
    padding: 0 20px; /* Adds padding for smaller screens */
}

.map-section h2 {
    font-size: 4rem; /* Default size */
    font-weight: bold;
    color: #0056b3;
    margin-bottom: 40px;
}

/* Responsive heading */
@media (max-width: 768px) {
    .map-section h2 {
        font-size: 3rem; /* Reduced size for tablets */
    }
}

@media (max-width: 480px) {
    .map-section h2 {
        font-size: 2.5rem; /* Further reduced size for mobile */
    }
}

.map-section p {
    font-size: 1.8rem; /* Default size */
    color: #666;
    margin-bottom: 50px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive paragraph */
@media (max-width: 768px) {
    .map-section p {
        font-size: 1.6rem; /* Reduced size for tablets */
    }
}

@media (max-width: 480px) {
    .map-section p {
        font-size: 1.4rem; /* Further reduced size for mobile */
    }
}

.map-container {
    width: 100%;
    max-width: 1000px; /* You can adjust this value */
    height: 400px; /* Set the fixed height */
    position: relative;
    margin: 0 auto; /* Centering the map */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive: Adjust the height for smaller screens */
@media (max-width: 768px) {
    .map-container {
        height: 300px; /* Smaller height for mobile */
    }
}

@media (max-width: 480px) {
    .map-container {
        height: 250px; /* Further adjustment for mobile */
    }
}



/* //////////////////////////////////////////////////////////////////////// */



/* ///////////////////////////////////////////////////////////////// */





.contact {
    height: auto;
    width: 100%;
    background: #2a2d54;
    /* background: linear-gradient(to bottom, #00509E 0%, #2CA58D 50%, #00509E 100%); */
   
    position: relative;
    color: #f0f0f0;

    font-family: sans-serif;
    font-family: 'Poppins', sans-serif;
    /* z-index: 9; */
    box-sizing: border-box;
    font-size: 1.8rem;
    /* overflow: hidden; */
}

.contact-container {
    padding: 90px 15px 62px;
    max-width: 1500px;
    margin-right: auto;
    margin-left: auto;
    display: flex;

    flex-wrap: wrap;
}

.contact-container ul li a {

    font-size: 14px;
    color: #cfd0e3;
    font-weight: 300;
    padding-bottom: 13px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}


.contact-container ul li a:hover {
    color: #007bff;
    transform: translateX(7px);
    /* Moves the text 5px to the right */


}



.contact-container ul li {
    padding-top: 10px;
}

.contact-container ul {
    padding-top: 15px;
}


.contact-container h1 {
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 30px;
}


.one p {
    /* padding: 10px; */
    font-size: 1.7rem;
    text-align: center;
}

.one .link {
    display: flex;
    /* margin: 20px; */
    justify-content: center;
    
}

.link a {
    text-decoration: none;
    color: #cfd0e3;
    background-color: rgba(255, 255, 255, .1);
    padding: 4px 5px;
    margin: 7px;
    margin-left: 10px;
    transition: all 0.5s;
    border-radius: 10px;
  
}

.link a:hover {
    background-color: #ffebcd;
    color: #007bff;
}




.one {
    width: 23%;
    padding-right: 20px;
    background: rgba(255, 255, 255, .1);
    padding: 20px;
    margin: 60px 50px 150px 10px;
    border-radius: 20px;
}



.two {
    width: 23%;
}

.two div ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.three {
    width: 23%;
    display: inline-block;
}




.four {
    width: 23%;

}

.four .address {
    line-height: 2.5rem;
    display: inline-flex;
}

.four i {
    padding-right: 10px;
}

.four ul li span {
    color: #cfd0e3;
    font-size: 14px;
   
}

.four ul li .col {
    transition: all 0.3s ease;
}

.four ul li .col:hover {
    color: #007bff;
    transform: translateX(5px);

}

.four .address span {
    text-align: start;
}




.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    color: #cfd0e3;
    padding: 3rem 0 3rem 0;
    background: #2a2d54;
    border-top: 0.1px solid rgb(82, 82, 82);
}

.footer-text p {
    padding-left: 0px;
    font-size: 14px;
    color: #cfd0e3;
    font-weight: 300;
    text-align: center;
}

.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #007bff;
    color: white;
    font-size: 24px;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: none; /* Hidden by default */
    z-index: 1000;
    transition: opacity 0.4s ease, background-color 0.3s;
}

.scroll-top.disabled {
    opacity: 0.5;
    pointer-events: none; /* Disable interaction */
}

.scroll-top:hover {
    background-color: #0056b3;
}




@media screen and (max-width: 1024px) {
  
  
 
   
    .coco {
        width: 50%;
    }
    .one,
    .two,
    .three,
    .four {
        padding-bottom: 50px;
    }

  

    .container2 {
        flex-wrap: wrap;
        
    }

    .one {
        width: 70vw;
        padding-right: 20px;
        padding: 20px;
        margin:0px 20px 70px 0px;
        text-align: center;
    }

    .one .link{
        justify-content: center;
    }

    .contact-container {
        padding-left: 100px;
    }

}

@media screen and ( max-width: 768px) {


    .coco {
        width: 100%;
    }
    
    .one,
    .two,
    .three,
    .four {
        padding-bottom: 50px;
    }
    
  
    .contact-container {
        justify-items: center;
        padding-left: 50px;

    }

    .container2 div{
        flex-direction: column;
    }

    
    .footer-text p {
        font-size: 1rem;
    }

   

    .container2 {
      flex-direction: column;
         
    }

    .container2 div{
        width: 96%; 
      }
  
    .container2 div {
        
        margin-left: 0;
        margin-right: 0;
        width: 100%;
      }

      .con form .input-box {
        flex-direction: column;
    }

    .con form .input-box input {
        width: 100%;
        border-radius: 0;
    }

    .con form textarea {
        border-radius: 0;
    }

    .con h4 {
        font-size: 2rem;
    }

    .con form .input-box input,
    .con form textarea {
     margin: .8rem 0;    
     }

    .fdir img{
        width: 80vw;
        padding: 0 10px;
        height: auto;
    }

    .box{
        width: 60vw;
    }

}


@media screen and ( max-width: 595px) {
 

.con h4 {
    font-size: 1.8rem;
    margin: 1rem 0;
}


}



@media screen and ( max-width: 483px) {
 
    .con {      
        padding: 30px 20px 0;
    }

    .teamH1 h1{
        font-size: 2.2rem;
    }

  
}

@media screen and ( max-width: 425px) {
   
 


    .con h4 {
        font-size: 1.6rem;
    
    }

  
}

@media screen and ( max-width: 320px) {

  
     .con h4 {
        font-size: 1.3rem;
    }



}