
/*first section start*/
body {
    height: 100%;
font-family: 'Karla', sans-serif;
}

.section-heading{
    font-size:48px !important ;
        font-family: 'Cormorant Garamond', serif;
        font-weight: 400; 
} 

.section-para{
    font-size: 16px;
        font-family: 'Karla', sans-serif;
        font-weight: 400;
}

/* Form Box */
.contact-form {
    background-color: #1C355E;
    color: #ffffff;
    border-radius: 12px;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
}

.contact-form h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 10px;
}

/* Inputs and Textarea */
.contact-form input,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 12px;
    color: #ffffff !important;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: Karla, sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-family: Karla, sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #64A9FF;
}

.contact-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-family: Karla, sans-serif;
}

.booking-form .form-group{
    margin-bottom: 5px;
}

/* File Upload */
.file-upload {
    position: relative;
    display: flex;
    align-items: center;
}

.file-upload input[type="file"] {
    display: none;
}

.file-label {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.file-label:hover {
    background: rgba(255, 255, 255, 0.2);
}

.file-label .icon {
    width: 20px;
    height: 20px;
    margin-right: 0.8rem;
}

.file-label{
    display: flex !important;
}
.form-control{
    background-color: transparent;
    color: #fff;
}
.form-group .file-text{
    font-size: 13px;
}
#submitLeadForm1 {
    width: 100%;
    padding: 10px 15px;
    background-color: #238DC1;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    font-family: 'Karla', sans-serif;
}

/* Checkbox */
.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-top: 16px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    font-size: 12px;
    line-height: 1.4;
    color: #fff;
    font-family: 'Karla', sans-serif;
    flex-wrap: wrap;
}

.contact-section .checkbox-group input{
    margin-top: 4px;
    margin-right: 10px;
    width: 15px;
    height: 15px;
    accent-color: #38769f;
    width: auto !important;
}

#chkapp {
    width: auto;
    margin-top: 4px;
    margin-right: 10px;
    width: 15px;
    height: 15px;
    accent-color: #38769f;
}
.checkbox-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-family: Karla, sans-serif;
        width: 90%;
}
.privacy-link{
    color: #fff;
    text-decoration: underline;
}

.checkbox input {
    margin-top: 5px;
    accent-color: #64A9FF;
    width: auto;
}

.checkbox label {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.checkbox a {
    color: #64A9FF;
    text-decoration: underline;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    background-color: #238DC1;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 14px;
    margin-top: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #5396E9;
}
.captcha-wrapper{
        display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0.5rem 0 1rem;
}
.contact-form .captcha-wrapper{
    padding: 0.5rem 1rem;
}
.captcha-wrapper .captcha{
    width: 48%;
    position: relative;
}
.captcha-wrapper .captcha-reload-icon{
        color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    position: absolute;
    bottom: 3px;
    right: 5px;
    background: #1c355e;
    font-size: 13px;
    padding: 2px;
}
/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-image img {
        height: auto;
    }

    .contact-form {
        padding: 48px 32px;
        margin-top: 1rem;
    }

    .contact-form h2 {
        font-size: 36px;
    }
}
@media (max-width: 767px) {
    /* arrow using CSS */
  .footer-column h3::after {
    content: "\f078"; /* fa-chevron-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* REQUIRED for solid icons */
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  font-size: 18px;
  }

  .menu-foot-conditions-container,.menu-foot-surgeries-container,.menu-quick-links-container {
    display: none;
  }

  .footer-column.active .menu-foot-conditions-container,
  .footer-column.active .menu-foot-surgeries-container,
  .footer-column.active .menu-quick-links-container {
    display: block;
  }

  .footer-column.active h3::after {
    transform: translateY(-50%) rotate(180deg);
  }
    .footer-column ul:not(.quick-links-column ul) {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}
@media (max-width: 576px) {
    .contact-form {
        padding: 32px 24px;
    }

    .contact-form h2 {
        font-size: 30px;
    }

    .btn-submit {
        font-size: 15px;
        padding: 12px;
    }
    .footer-column h3 {
    cursor: pointer;
    position: relative;
    padding-right: 20px;
  }

  /* arrow using CSS */
  .footer-column h3::after {
    content: "\f078"; /* fa-chevron-down */
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* REQUIRED for solid icons */
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  font-size: 18px;
  }

  .menu-foot-conditions-container,.menu-foot-surgeries-container,.menu-quick-links-container {
    display: none;
  }

  .footer-column.active .menu-foot-conditions-container,
  .footer-column.active .menu-foot-surgeries-container,
  .footer-column.active .menu-quick-links-container {
    display: block;
  }

  .footer-column.active h3::after {
    transform: translateY(-50%) rotate(180deg);
  }
    .footer-column ul:not(.quick-links-column ul) {
        grid-template-columns: repeat(1, 1fr);
    }
}
/* footer css start */

.site-footer {
    background-color: #04203E; /* Dark blue background */
    color: #ffffff;
    padding: 4rem 0; /* Adjust padding for spacing */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* --- Navigation Links Section (Top) --- */
.footer-content-top {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1 1 30%; /* Allows columns to grow and shrink */
}

/* Specific styling for the third column to make it narrower if needed */
.quick-links-column {
    flex: 0 1 15%; /* Quick links are narrower */
}

.footer-column h3 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: #fff; /* Slightly lighter heading color */
                font-family: 'Karla', sans-serif;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    /* Use CSS Grid for the two-column link layout (where applicable) */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 20px;
}

/* Override for Quick Links to be single column */
.quick-links-column ul {
    grid-template-columns: 1fr;
    gap: 8px 0;
}

.footer-column li a {
    color: #fff; /* Light grey for links */
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
                font-family: 'Karla', sans-serif;
}

.footer-column li a:hover {
    color: #fff; 
    border-bottom: 1px solid #fff;/* Highlight on hover */
}

/* --- Separator --- */
.footer-separator {
    border: 0;
    border-top: 2px solid #003366; /* Lighter border color */
    margin: 30px 0;
}

/* --- Contact and Social Section (Bottom) --- */
.footer-content-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-contact-info {
    display: flex;
    gap: 40px;
    width: 80%;
}

.footer-logo p {
    font-size: 18px;
    line-height: 1.2;
    color: #ffffff;
    margin-top: 5px; /* Alignment adjustment */
}

.contact-details {
    display: flex;
    flex-direction: row;
    gap: 90px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    font-size: 14px;
    padding-bottom:2rem;
}

.contact-item .icon {
    margin-right: 10px;
    height: auto;
    /* For actual icons (like FontAwesome), you'd use a font or SVG */
}

.contact-item p {
    color: #fff;
    font-size: 14px;
    margin: 0;
    font-family: 'Karla', sans-serif;
}
.contact-item p a{
    color: #fff;
    text-decoration: none;
}

/* Social Links */
.social-links-container {
    text-align: right;
}

.social-links-container p {
    font-size: 14px;
    color: #fff;
    margin-bottom: 10px;
    text-align: left;
                font-family: 'Karla', sans-serif;
}
.footer-logo{
    width: 14%;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-left: 10px;
    text-decoration: none;
    transition: background-color 0.3s, border-color 0.3s;
}
.social-icons a:first-child{
    margin-left: 0;
}

.social-icons a:hover {
    background-color: #003366;
    border-color: #ffffff;
}

.social-icons .icon {
    font-size: 18px; /* Use actual social icons here */
}

/* --- Copyright Section --- */
.footer-copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #003366;
    font-size: 12px;
}
.footer-column ul li{
    font-size: 14px;
    color: #fff;
}

.footer-copyright a:visited{
    color: #fff;
}

.copyright-text {
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    font-size: 14px;
    font-family: 'Karla', sans-serif;
}

.copyright-text:hover{
    color: #fff !important;
}

.footer-legal-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s;
    font-size: 14px;
                font-family: 'Karla', sans-serif;
}

.footer-legal-links a:hover, .footer-legal-links a:visited {
    color: #ffffff !important;
}

.top-logo{
    display: none;
    padding-bottom: 20px;
}


/* --- Responsiveness (Mobile First Approach) --- */

/* Tablet and Smaller Desktop (e.g., up to 1024px) */
@media (max-width: 1024px) {
    .footer-column ul {
        /* Switch multi-column lists to single column on smaller screens */
        grid-template-columns: 1fr;
    }
}

/* Mobile Devices (e.g., up to 768px) */
@media (max-width: 991px) {
    .footer-column h3{
        font-size: 16px;
    }

    .footer-content-top {
        flex-direction: column; /* Stack the main columns */
        gap: 20px;
    }

    .footer-column {
        flex: 1 1 100%; /* Columns take full width */
    }

    .quick-links-column {
        flex: 1 1 100%; /* Quick links also take full width */
    }

    /* Keep the two-column layout for the list items if possible, otherwise switch to single */
    .footer-column ul:not(.quick-links-column ul) {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px 10px;
    }

    /* Contact and Social section stacking */
    .footer-content-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .footer-contact-info {
        flex-direction: column; /* Stack logo and contact details */
        gap: 20px;
        width: 100%;
    }
    .contact-details{
        flex-direction: column;
        gap: 0;
    }

    .social-links-container {
        text-align: left; /* Align social links left */
    }

    .social-icons a {
        margin-left: 0;
        margin-right: 10px;
    }

    /* Copyright stacking */
    .footer-copyright {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 10px;
    }

    .footer-legal-links {
        margin-top: 5px;
    }
}

/* Extra Small Mobile (e.g., up to 480px) */
@media (max-width: 480px) {
    /* Force all link lists to a single column for very small screens */
    .footer-column ul {
        grid-template-columns: 1fr;
    }
    .footer-copyright {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        gap: 10px;
    }

    .top-logo{
        width: 25%;  
        display: block;
    }
    .middle-logo{
        display:none ;
    }

    .contact-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
        padding-bottom: 1rem;
    }
    .contact-item .icon {
        margin-bottom: 5px;
    }
    .contact-item.contact-flex.location{
        align-items: flex-start;
    }
    .site-footer p{
        margin-bottom: 0;
    }
    .inner-blue-box .text-content h2 br{
        display: none;
    }
}


/* footer css end */


/*extra media query*/
   @media screen and (min-width: 1600px) and (max-width: 2000px){    
    .hero-section .hero-content-overlay{
        left: 10%;
    }
}

    @media screen and (min-width: 1025px) and (max-width: 1280px){
    .navbar-brand{
        margin-right: 0;
    }
    .main-nav-bar .nav-link{
        font-size: 14px;
    }
    .book-appointment-btn{
        font-size: 12px;
    }
    .hero-section .main-title{
        font-size: 80px;
    }
    header .nav-item a{
        font-size: 14px;
    }
    #primary-menu{
        margin: 0 ;
    }
    header .nav-item{
        margin-left: 10px !important;
    }
}

 @media screen and (min-width: 992px) and (max-width: 1024px){ 
 .hero-section .hero-content-overlay{
    left: 4%;
 }
 .hero-section .main-title{
    font-size: 60px;
 }
  .footer-logo img{
    width: 100%;
    height: auto;
    max-width: 70%;
 }
 .contact-item p{
    font-size: 12px;
 }
 .footer-copyright{
    font-size: 10px;
 }
 .footer-content-bottom{
    gap: 20px;
 }
    
}

 @media screen and (min-width: 768px) and (max-width: 991px){    
    .hero-section .hero-content-overlay{
        left: 4%;
    }

}


