 @charset "UTF-8";

 :root {
     --default-font: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
     --heading-font: "Poppins", sans-serif;
     --nav-font: "Poppins", sans-serif;
 }

 :root {
     --background-color: #f4f6fa;
     /* Light, professional background */
     --default-color: #1f1f1f;
     /* Rich dark gray for main text */
     --heading-color: #234b77;
     /* Trust-building deep medical blue */
     --accent-color: #d86da2;
     /* Soft rose-magenta (inclusive, warm) */
     --surface-color: #ffffff;
     /* Card and container backgrounds */
     --contrast-color: #ffffff;
     /* Text over dark/accent backgrounds */
 }

 /* Nav Menu Colors */

 :root {
     --nav-color: #000;
     /* Semi-transparent navy blue */
     --nav-hover-color: #d86da2;
     /* Accent rose for hover/active */
     --nav-mobile-background-color: #ffffff;
     /* Clean white mobile nav */
     --nav-dropdown-background-color: #f0f3f8;
     /* Subtle light blue-gray dropdown */
     --nav-dropdown-color: #000000;
     /* Text inside dropdowns */
     --nav-dropdown-hover-color: #d86da2;
     /* Accent on hover */
 }

 /* Color Presets */

 .light-background {
     --background-color: #ffffff;
     --surface-color: #ffffff;
 }

 .dark-background {
     --background-color: #1e1e2a;
     --default-color: #ffffff;
     --heading-color: #ffffff;
     --surface-color: #2e2e3d;
     --contrast-color: #ffffff;
 }

 /* Smooth scroll */

 :root {
     scroll-behavior: smooth;
 }

 /*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

 body {
     color: var(--default-color);
     background-color: var(--background-color);
     font-family: var(--default-font);
 }

 a {
     color: var(--accent-color);
     text-decoration: none;
     transition: 0.3s;
 }

 a:hover {
     color: color-mix(in srgb, var(--accent-color), transparent 25%);
     text-decoration: none;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     color: var(--heading-color);
     font-family: var(--heading-font);
 }

 /* PHP Email Form Messages
------------------------------*/

 .php-email-form .error-message {
     display: none;
     background: #df1529;
     color: #ffffff;
     text-align: left;
     padding: 15px;
     margin-bottom: 24px;
     font-weight: 600;
 }

 .php-email-form .sent-message {
     display: none;
     color: #ffffff;
     background: #059652;
     text-align: center;
     padding: 15px;
     margin-bottom: 24px;
     font-weight: 600;
 }

 .php-email-form .loading {
     display: none;
     background: var(--surface-color);
     text-align: center;
     padding: 15px;
     margin-bottom: 24px;
 }

 .php-email-form .loading:before {
     content: "";
     display: inline-block;
     border-radius: 50%;
     width: 24px;
     height: 24px;
     margin: 0 10px -6px 0;
     border: 3px solid var(--accent-color);
     border-top-color: var(--surface-color);
     animation: php-email-form-loading 1s linear infinite;
 }

 @keyframes php-email-form-loading {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 /*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

 .header {
     --background-color: rgba(255, 255, 255, 0);
     color: var(--default-color);
     background-color: var(--background-color);
     padding: 20px 0;
     transition: all 0.5s;
     z-index: 997;
 }

 .header .header-container {
     background: var(--surface-color);
     border-radius: 50px;
     padding: 5px 25px 5px 30px;
     box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
 }

 .header .logo {
     line-height: 1;
 }

 .header .logo img {
     max-height: 36px;
     margin-right: 8px;
 }

.header .logo h1 {
    font-size: 20px;
    margin: 0;
    font-weight: 600;
    color: var(--heading-color);
}

/* Hide logo text on mobile screens */
@media (max-width: 576px) {
    .header .logo h1 {
        display: none;
    }
}


 .header .btn-getstarted,
 .header .btn-getstarted:focus {
     color: var(--contrast-color);
     background: var(--accent-color);
     font-size: 14px;
     padding: 8px 20px;
     margin: 0 0 0 30px;
     border-radius: 50px;
     transition: 0.3s;
 }

 .header .btn-getstarted:hover,
 .header .btn-getstarted:focus:hover {
     color: var(--contrast-color);
     background: color-mix(in srgb, var(--accent-color), transparent 15%);
 }

 @media (max-width: 1200px) {
     .header {
         padding-top: 10px;
     }

     .header .header-container {
         margin-left: 10px;
         margin-right: 10px;
         padding: 10px 5px 10px 15px;
     }

     .header .logo {
         order: 1;
     }

     .header .btn-getstarted {
         order: 2;
         margin: 0 10px 0 0;
         padding: 6px 15px;
     }

     .header .navmenu {
         order: 3;
     }
 }

 /*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
 /* Navmenu - Desktop */

 @media (min-width: 1200px) {
     .navmenu {
         padding: 0;
     }

     .navmenu ul {
         margin: 0;
         padding: 0;
         display: flex;
         list-style: none;
         align-items: center;
     }

     .navmenu li {
         position: relative;
     }

     .navmenu a,
     .navmenu a:focus {
         color: var(--nav-color);
         padding: 18px 15px;
         font-size: 16px;
         font-family: var(--nav-font);
         font-weight: 400;
         display: flex;
         align-items: center;
         justify-content: space-between;
         white-space: nowrap;
         transition: 0.3s;
     }

     .navmenu a i,
     .navmenu a:focus i {
         font-size: 12px;
         line-height: 0;
         margin-left: 5px;
         transition: 0.3s;
     }

     .navmenu li:last-child a {
         padding-right: 0;
     }

     .navmenu li:hover > a,
     .navmenu .active,
     .navmenu .active:focus {
         color: var(--nav-hover-color);
     }

     .navmenu .dropdown ul {
         margin: 0;
         padding: 10px 0;
         background: var(--nav-dropdown-background-color);
         display: block;
         position: absolute;
         visibility: hidden;
         left: 14px;
         top: 130%;
         opacity: 0;
         transition: 0.3s;
         border-radius: 4px;
         z-index: 99;
         box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
     }

     .navmenu .dropdown ul li {
         min-width: 200px;
     }

     .navmenu .dropdown ul a {
         padding: 10px 20px;
         font-size: 15px;
         text-transform: none;
         color: var(--nav-dropdown-color);
     }

     .navmenu .dropdown ul a i {
         font-size: 12px;
     }

     .navmenu .dropdown ul a:hover,
     .navmenu .dropdown ul .active:hover,
     .navmenu .dropdown ul li:hover > a {
         color: var(--nav-dropdown-hover-color);
     }

     .navmenu .dropdown:hover > ul {
         opacity: 1;
         top: 100%;
         visibility: visible;
     }

     .navmenu .dropdown .dropdown ul {
         top: 0;
         left: -90%;
         visibility: hidden;
     }

     .navmenu .dropdown .dropdown:hover > ul {
         opacity: 1;
         top: 0;
         left: -100%;
         visibility: visible;
     }
 }

 /* Navmenu - Mobile */

 @media (max-width: 1199px) {
     .mobile-nav-toggle {
         color: var(--nav-color);
         font-size: 28px;
         line-height: 0;
         margin-right: 10px;
         cursor: pointer;
         transition: color 0.3s;
     }

     .navmenu {
         padding: 0;
         z-index: 9997;
     }

     .navmenu ul {
         display: none;
         list-style: none;
         position: absolute;
         inset: 60px 20px 20px 20px;
         padding: 10px 0;
         margin: 0;
         border-radius: 6px;
         background-color: var(--nav-mobile-background-color);
         overflow-y: auto;
         transition: 0.3s;
         z-index: 9998;
         box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
     }

     .navmenu a,
     .navmenu a:focus {
         color: var(--nav-dropdown-color);
         padding: 10px 20px;
         font-family: var(--nav-font);
         font-size: 17px;
         font-weight: 500;
         display: flex;
         align-items: center;
         justify-content: space-between;
         white-space: nowrap;
         transition: 0.3s;
     }

     .navmenu a i,
     .navmenu a:focus i {
         font-size: 12px;
         line-height: 0;
         margin-left: 5px;
         width: 30px;
         height: 30px;
         display: flex;
         align-items: center;
         justify-content: center;
         border-radius: 50%;
         transition: 0.3s;
         background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
     }

     .navmenu a i:hover,
     .navmenu a:focus i:hover {
         background-color: var(--accent-color);
         color: var(--contrast-color);
     }

     .navmenu a:hover,
     .navmenu .active,
     .navmenu .active:focus {
         color: var(--nav-dropdown-hover-color);
     }

     .navmenu .active i,
     .navmenu .active:focus i {
         background-color: var(--accent-color);
         color: var(--contrast-color);
         transform: rotate(180deg);
     }

     .navmenu .dropdown ul {
         position: static;
         display: none;
         z-index: 99;
         padding: 10px 0;
         margin: 10px 20px;
         background-color: var(--nav-dropdown-background-color);
         border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
         box-shadow: none;
         transition: all 0.5s ease-in-out;
     }

     .navmenu .dropdown ul ul {
         background-color: rgba(33, 37, 41, 0.1);
     }

     .navmenu .dropdown > .dropdown-active {
         display: block;
         background-color: rgba(33, 37, 41, 0.03);
     }

     .mobile-nav-active {
         overflow: hidden;
     }

     .mobile-nav-active .mobile-nav-toggle {
         color: #fff;
         position: absolute;
         font-size: 32px;
         top: 15px;
         right: 15px;
         margin-right: 0;
         z-index: 9999;
     }

     .mobile-nav-active .navmenu {
         position: fixed;
         overflow: hidden;
         inset: 0;
         background: rgba(33, 37, 41, 0.8);
         transition: 0.3s;
     }

     .mobile-nav-active .navmenu > ul {
         display: block;
     }
 }

 /*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
 /* Footer Base */
 .footer {
     background-color: #121212;
     /* Dark, elegant background */
     color: #f9f7f4;
     /* Soft white text */
     padding: 60px 0 20px 0;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 /* Footer Top */
 .footer-top {
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     padding-bottom: 40px;
 }

 /* Footer Logo & About */
 .footer .logo {
     font-size: 1.8rem;
     font-weight: 600;
     color: var(--accent-color, #2ca3b5);
     text-decoration: none;
     margin-bottom: 20px;
 }

 .footer .footer-about p {
     font-size: 1rem;
     line-height: 1.6;
     margin-top: 10px;
 }

 /* Footer Headings */
 .footer h4 {
     font-size: 1.2rem;
     font-weight: 600;
     margin-bottom: 15px;
     color: var(--accent-color, #2ca3b5);
 }

 /* Contact Info */
 .footer-contact p {
     font-size: 16px;
     color: #fff;
 }

 .footer-contact span {
     font-size: 16px;
     color: #fff;
 }

 .footer-contact strong {
     font-weight: 900;
 }




 /* Footer Links */
 .footer-links ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-links ul li {
     margin-bottom: 10px;
 }

 .footer-links ul li a {
     color: #fff;
     text-decoration: none;
     transition: 0.3s;
     font-size: 16px;
     font-weight: 700;
 }

 .footer-links ul li a:hover {
     color: var(--accent-color, #2ca3b5);
 }

 /* Footer Bottom */
 .footer .credits,
 .footer p {
     font-size: 0.85rem;
     color: rgba(255, 255, 255, 0.6);
     margin: 0;
 }

 .footer .credits a {
     color: var(--accent-color, #2ca3b5);
     text-decoration: none;
     font-weight: 500;
 }

 .footer .credits a:hover {
     text-decoration: underline;
 }

 /* Responsive */
 @media (max-width: 768px) {

     .footer .footer-about,
     .footer .footer-contact,
     .footer .footer-links {
         text-align: center;
     }

     .footer .footer-contact {
         margin-top: 30px;
     }

     .footer .footer-links {
         margin-top: 30px;
     }
 }

 /*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

 #preloader {
     position: fixed;
     inset: 0;
     z-index: 999999;
     overflow: hidden;
     background: var(--background-color);
     transition: all 0.6s ease-out;
 }

 #preloader:before {
     content: "";
     position: fixed;
     top: calc(50% - 30px);
     left: calc(50% - 30px);
     border: 6px solid #ffffff;
     border-color: var(--accent-color) transparent var(--accent-color) transparent;
     border-radius: 50%;
     width: 60px;
     height: 60px;
     animation: animate-preloader 1.5s linear infinite;
 }

 @keyframes animate-preloader {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
 }

 /*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/

 .scroll-top {
     position: fixed;
     visibility: hidden;
     opacity: 0;
     right: 15px;
     bottom: -15px;
     z-index: 99999;
     background-color: var(--accent-color);
     width: 44px;
     height: 44px;
     border-radius: 50px;
     transition: all 0.4s;
 }

 .scroll-top i {
     font-size: 24px;
     color: var(--contrast-color);
     line-height: 0;
 }

 .scroll-top:hover {
     background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
     color: var(--contrast-color);
 }

 .scroll-top.active {
     visibility: visible;
     opacity: 1;
     bottom: 15px;
 }


/* whatsapp */

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 80px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    border: #fff solid 2px;
    text-align: center;
    align-content: center;
    font-size: 28px;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}


 /*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

 @media screen and (max-width: 768px) {
     [data-aos-delay] {
         transition-delay: 0 !important;
     }
 }

 /*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/

 .page-title {
     color: var(--default-color);
     background-color: #000;
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     padding: 160px 0 80px 0;
     text-align: center;
     position: relative;
 }

 .page-title::after {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.05) 1px, transparent 1px, transparent 10px);
     z-index: 1;
 }

 .page-title h1 {
     font-size: 42px;
     font-weight: 700;
     margin-bottom: 10px;
 }

 .page-title .breadcrumbs ol {
     display: flex;
     flex-wrap: wrap;
     list-style: none;
     justify-content: center;
     padding: 0;
     margin: 0;
     font-size: 16px;
     font-weight: 400;
 }

 .page-title .breadcrumbs ol li + li {
     padding-left: 10px;
 }

 .page-title .breadcrumbs ol li + li::before {
     content: "/";
     display: inline-block;
     padding-right: 10px;
     color: color-mix(in srgb, var(--default-color), transparent 50%);
 }

 /*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/

 section,
 .section {
     color: var(--default-color);
     background-color: var(--background-color);
     padding: 60px 0;
     scroll-margin-top: 90px;
     overflow: clip;
 }

 @media (max-width: 1199px) {

     section,
     .section {
         scroll-margin-top: 66px;
     }
 }

 /*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/

 .section-title {
     padding-bottom: 60px;
     position: relative;
 }

 .section-title h2 {
     font-size: 14px;
     font-weight: 500;
     padding: 0;
     line-height: 1px;
     margin: 0;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     color: color-mix(in srgb, var(--default-color), transparent 50%);
     position: relative;
 }

 .section-title h2::after {
     content: "";
     width: 120px;
     height: 1px;
     display: inline-block;
     background: var(--accent-color);
     margin: 4px 10px;
 }

 .section-title div {
     color: var(--heading-color);
     margin: 0;
     margin: 0;
     font-size: 28px;
     font-weight: 700;
     text-transform: uppercase;
     font-family: var(--heading-font);
 }

 /* inner*/

 .surgery-detail {
     background-color: var(--background-color);
     color: var(--default-color);
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 /* Headings & Text */

 .surgery-detail .surgery-heading {
     font-size: 3rem;
     color: var(--accent-color);
     letter-spacing: 2px;
 }

 .surgery-detail .description-title {
     color: var(--accent-color);
     font-style: italic;
     font-weight: 500;
 }

 .surgery-detail hr.border-accent {
     border-color: var(--accent-color);
 }

 .surgery-detail .text-accent {
     color: var(--accent-color);
 }

 /* Buttons */

 .surgery-detail .btn-accent {
     background: linear-gradient(135deg, var(--accent-color));
     color: #fff;
     border-radius: 50px;
     padding: 0.75rem 2.5rem;
     font-weight: 600;
     box-shadow: 0 8px 20px rgba(255, 255, 255, 0.4);
     transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.2s ease;
     border: none;
     display: inline-block;
 }

 .surgery-detail .btn-accent:hover,
 .surgery-detail .btn-accent:focus {
     background: linear-gradient(135deg, #234b77, #234b77);
     box-shadow: 0 12px 30px rgba(10, 76, 77, 0.6);
     transform: translateY(-3px);
     outline: none;
 }

 /* Cards */

 .surgery-detail .card {
     border-radius: 1.5rem;
     padding: 2rem 1.5rem;
     border: 1px solid rgba(255, 255, 255, 0.08);
     transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
     backdrop-filter: blur(8px);
     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
     cursor: default;
     position: relative;
     overflow: hidden;
 }

 .surgery-detail .card:hover {
     transform: translateY(-10px);
     box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
     border-color: var(--accent-color);
     cursor: pointer;
 }

 .surgery-detail .card::before {
     content: '';
     position: absolute;
     top: -10%;
     left: -10%;
     width: 120%;
     height: 120%;
     background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 60%);
     z-index: 0;
     transition: all 0.6s ease;
 }

 .surgery-detail .card:hover::before {
     transform: scale(1.05) rotate(2deg);
     opacity: 0.8;
 }

 .surgery-detail .card-body {
     padding: 0;
     position: relative;
     z-index: 1;
 }

 .surgery-detail .card-title {
     font-size: 1.4rem;
     font-weight: 700;
     margin-bottom: 1rem;
     color: var(--accent-color);
     display: flex;
     align-items: center;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     padding-bottom: 0.6rem;
 }

 .surgery-detail .card-title i {
     margin-right: 0.75rem;
     font-size: 1.5rem;
     color: var(--accent-color);
     flex-shrink: 0;
 }

 .surgery-detail .card-text {
     font-size: 1.05rem;
     line-height: 1.65;
     color: var(--default-color);
     margin-top: 0.5rem;
     text-align: justify;
 }

 /* Icons */

 .surgery-detail .bi-check-circle-fill,
 .surgery-detail .bi-gear-fill,
 .surgery-detail .bi-calendar-check-fill,
 .surgery-detail .bi-people-fill,
 .surgery-detail .bi-brush-fill,
 .surgery-detail .bi-shield-lock-fill,
 .surgery-detail .bi-wallet2 {
     vertical-align: middle;
     color: var(--accent-color);
 }

 /* Hero */

 .hero {
     position: relative;
     min-height: 100vh;
     width: 100%;
     display: flex;
     align-items: center;
     background-size: cover;
     background-position: center;
     padding: 100px 0;
     overflow: hidden;
     color: var(--contrast-color);
 }

 .hero .overlay {
     content: "";
     position: absolute;
     inset: 0;
     /* background: linear-gradient(135deg, rgba(35, 75, 119, 0.85), rgba(216, 109, 162, 0.65)); */
     background: rgba(0, 0, 0, 0.588);
     z-index: 1;
 }

 .hero .container {
     position: relative;
     z-index: 2;
 }

 .hero .content-col {
     display: flex;
     flex-direction: column;
     justify-content: center;
     padding-right: 3rem;
 }

 .hero .agency-name h5 {
     font-size: 1.3rem;
     font-weight: 700;
     letter-spacing: 2px;
     text-transform: uppercase;
     color: var(--accent-color);
     margin-bottom: 1.2rem;
     animation: fadeInDown 1.5s ease-out;
 }

 .hero .main-heading h1 {
     font-size: 4.5rem;
     font-weight: 900;
     letter-spacing: -1.5px;
     line-height: 1.15;
     color: #ffffff;
     margin-bottom: 2rem;
     text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
     animation: fadeInUp 1.2s ease-out;
 }

 .hero .divider {
     width: 80px;
     height: 4px;
     background-color: var(--accent-color);
     margin-bottom: 2rem;
 }

 .hero .description p {
     font-size: 1.1rem;
     line-height: 1.8;
     color: #f4f6fa;
 }

 .hero .cta-button .btn {
     display: inline-flex;
     align-items: center;
     background-color: var(--accent-color);
     border: none;
     color: var(--contrast-color);
     padding: 0.85rem 1.8rem;
     border-radius: 50px;
     font-size: 1rem;
     font-weight: 600;
     letter-spacing: 0.8px;
     transition: all 0.3s ease;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
 }

 .hero .cta-button .btn:hover {
     background-color: #b35486;
     transform: translateY(-3px);
 }

 .hero .cta-button .btn i {
     margin-left: 0.7rem;
     font-size: 1.2rem;
 }

 .hero .fluid-shape img {
     width: 100%;
     max-width: 450px;
     animation: float 5s ease-in-out infinite;
 }

 .hero .stats-card {
     position: absolute;
     bottom: 10%;
     right: 0;
     background-color: rgba(255, 255, 255, 0.08);
     backdrop-filter: blur(12px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 1rem;
     padding: 1.5rem;
     width: 220px;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
     text-align: center;
 }

 .hero .stats-card h2 {
     font-size: 3rem;
     margin: 0;
     font-weight: 700;
     color: var(--contrast-color);
 }

 .hero .stats-card p {
     font-size: 1rem;
     margin-top: 0.5rem;
     color: #e0e0e0;
 }

 @keyframes float {
     0% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-15px);
     }

     100% {
         transform: translateY(0);
     }
 }

 @media (max-width: 991px) {
     .hero .content-col {
         padding-right: 0;
         margin-bottom: 2rem;
     }

     .hero .stats-card {
         position: relative;
         bottom: auto;
         right: auto;
         margin-top: 2rem;
         width: 100%;
     }
 }

 @media (max-width: 767px) {
     .hero .main-heading h1 {
         font-size: 2.8rem;
     }
 }

 .about {
     padding: 100px 0;
     /* background: linear-gradient(to bottom, var(--background-color), #101010); */
 }

 .about .about-image {
     position: relative;
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
 }

 .about .about-image img {
     transition: transform 0.6s ease-in-out;
     object-fit: cover;
     width: 100%;
     height: auto;
 }

 .about .about-image:hover img {
     transform: scale(1.04);
 }

 .about .experience-badge {
     position: absolute;
     bottom: -15px;
     right: -15px;
     background: var(--accent-color);
     color: var(--contrast-color);
     padding: 1.4rem 1.2rem;
     border-radius: 12px;
     box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
     text-align: center;
     min-width: 140px;
     animation: floatBadge 4s ease-in-out infinite;
 }

 @keyframes floatBadge {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-5px);
     }
 }

 .about .experience-badge .years {
     font-size: 2.7rem;
     font-weight: 800;
     margin-bottom: 6px;
     display: block;
 }

 .about .experience-badge .text {
     font-size: 0.85rem;
     text-transform: uppercase;
     letter-spacing: 1.2px;
     font-weight: 600;
     opacity: 0.9;
 }

 .about .about-content h2 {
     font-size: 2.5rem;
     font-weight: 800;
     color: var(--heading-color);
     margin-bottom: 1.5rem;
     line-height: 1.3;
     letter-spacing: -0.5px;
 }

 .about .lead {
     font-size: 1.2rem;
     font-weight: 500;
     color: color-mix(in srgb, var(--default-color), var(--heading-color) 55%);
     margin-bottom: 1.25rem;
     line-height: 1.6;
 }

 .about .about-content p {
     color: var(--default-color);
     opacity: 0.9;
     font-size: 1rem;
     line-height: 1.65;
 }

 .feature-item {
     background: var(--surface-color);
     border-radius: 14px;
     padding: 1.75rem;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
     transition: all 0.35s ease;
     height: 100%;
     display: flex;
     flex-direction: column;
     justify-content: start;
 }

 .feature-item:hover {
     transform: translateY(-6px) scale(1.01);
     box-shadow: 0 16px 35px rgba(0, 0, 0, 0.12);
 }

 .feature-item i {
     font-size: 2.2rem;
     color: var(--accent-color);
     margin-bottom: 1rem;
 }

 .feature-item h5 {
     font-size: 1.2rem;
     font-weight: 700;
     margin-bottom: 0.6rem;
     color: var(--heading-color);
 }

 .feature-item p {
     font-size: 0.95rem;
     color: color-mix(in srgb, var(--default-color), transparent 10%);
     line-height: 1.6;
     margin-bottom: 0;
 }

 .about .btn-primary {
     background-color: var(--accent-color);
     border: none;
     padding: 0.75rem 2rem;
     border-radius: 60px;
     font-weight: 600;
     font-size: 1rem;
     color: var(--contrast-color);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
     transition: background-color 0.3s ease, transform 0.3s ease;
 }

 .about .btn-primary:hover {
     background-color: color-mix(in srgb, var(--accent-color), black 10%);
     transform: translateY(-2px);
 }

 /*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

 .services .service-header {
     margin-bottom: 60px;
 }

 .services .service-header .service-intro .service-heading {
     font-size: 48px;
     margin-bottom: 0;
     font-weight: 700;
     line-height: 1.2;
     color: var(--heading-color);
 }

 .services .service-header .service-intro .service-heading div {
     display: block;
     position: relative;
 }

 .services .service-header .service-intro .service-heading span {
     display: block;
     color: var(--accent-color);
 }

 @media (max-width: 992px) {
     .services .service-header .service-intro .service-heading {
         font-size: 36px;
     }
 }

 @media (max-width: 768px) {
     .services .service-header .service-intro .service-heading {
         font-size: 30px;
         margin-bottom: 20px;
     }
 }

 .services .service-header .service-summary p {
     margin-bottom: 25px;
     color: var(--default-color);
 }

 .services .service-header .service-summary .service-btn {
     display: inline-flex;
     align-items: center;
     padding: 12px 30px;
     background-color: var(--accent-color);
     color: var(--contrast-color);
     border-radius: 4px;
     font-weight: 500;
     transition: all 0.3s ease;
 }

 .services .service-header .service-summary .service-btn i {
     margin-left: 10px;
     transition: transform 0.3s ease;
 }

 .services .service-header .service-summary .service-btn:hover {
     background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
     color: var(--contrast-color);
 }

 .services .service-header .service-summary .service-btn:hover i {
     transform: translateX(5px);
 }

 @media (max-width: 992px) {
     .services .service-header .service-summary {
         margin-top: 30px;
     }
 }

 .services .service-card {
     padding: 40px;
     margin-bottom: 30px;
     border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
     border-radius: 20px;
     transition: all 0.3s ease;
     height: 100%;
     /* Fills parent flex item */
     display: flex;
     flex-direction: column;
     justify-content: space-between;
     min-height: 350px;
     /* Adjust based on your content */
 }


 .services .service-card .service-icon {
     margin-bottom: 25px;
     background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
     display: inline-flex;
     align-items: center;
     justify-content: center;
     border-radius: 10px;
     width: 64px;
     height: 64px;
 }

 .services .service-card .service-icon i {
     font-size: 32px;
     color: var(--accent-color);
     transition: all 0.3s ease;
 }

 .services .service-card h3 {
     font-size: 28px;
     margin-bottom: 15px;
     font-weight: 700;
 }

 .services .service-card h3 a {
     color: var(--heading-color);
     transition: color 0.3s ease;
 }

 .services .service-card h3 a span {
     display: block;
 }

 .services .service-card h3 a:hover {
     color: var(--accent-color);
 }

 .services .service-card p {
     color: var(--default-color);
     transition: color 0.3s ease;
     margin-bottom: 0;
 }

 .services .service-card .card-action {
     position: absolute;
     top: 0;
     right: 0;
     width: 80px;
     height: 80px;
     display: flex;
     align-items: center;
     justify-content: center;
     background-color: var(--accent-color);
     opacity: 0;
     visibility: hidden;
     transform: translateY(20px);
     transition: all 0.3s ease;
 }

 .services .service-card .card-action i {
     font-size: 24px;
     color: var(--contrast-color);
     transition: transform 0.3s ease;
 }

 .services .service-card .card-action:hover i {
     transform: rotate(45deg);
 }

 .services .service-card::before {
     content: "";
     position: absolute;
     border-radius: 20px;

     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-color: var(--surface-color);
     clip-path: polygon(70% 0, 100% 30%, 100% 100%, 0 100%, 0 0);
     z-index: -1;
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
 }

 .services .service-card:hover {
     border-color: transparent;
 }

 .services .service-card:hover::before {
     opacity: 1;
     visibility: visible;
     background-color: var(--surface-color);
 }

 .services .service-card:hover h3 a {
     color: var(--accent-color);
 }

 .services .service-card:hover h3 a:hover {
     color: var(--accent-color);
 }

 .services .service-card:hover p {
     color: color-mix(in srgb, var(--default-color), transparent 20%);
 }

 .services .service-card:hover .card-action {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .services .service-card:hover .service-icon i {
     transform: scale(1.1);
 }

 @media (max-width: 768px) {
     .services .service-card {
         padding: 150px 25px 25px;
     }

     .services .service-card h3 {
         font-size: 24px;
     }

     .services .service-card .service-icon {
         position: absolute;
         top: 40px;
         left: 25px;
     }
 }

 @media (max-width: 768px) {
     .services {
         padding: 70px 0 50px;
     }
 }

 /*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/

 .call-to-action {
     padding-top: 80px;
     position: relative;
     background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
     border-radius: 1rem;
     overflow: hidden;
     padding-bottom: 80px;
 }

 .call-to-action .badge {
     background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
     color: var(--accent-color);
     padding: 0.5rem 1rem;
     font-size: 0.875rem;
     font-weight: 500;
     border-radius: 2rem;
 }

 .call-to-action h2 {
     font-size: clamp(1.75rem, 3vw, 2.5rem);
     font-weight: 700;
     line-height: 1.2;
     margin: 0;
 }

 .call-to-action p {
     font-size: 1.125rem;
     line-height: 1.6;
     opacity: 0.9;
 }

 .call-to-action .features .feature-item {
/*     display: flex;*/
/*     align-items: center;*/
/*     gap: 0.5rem;*/
     padding: 0.5rem 1rem;
     background-color: var(--surface-color);
/*     border-radius: 0.5rem;*/
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease;
 }

 .call-to-action .features .feature-item:hover {
     transform: translateY(-6px);
 }

 .call-to-action .features .feature-item i {
/*     color: var(--accent-color);*/
     font-size: 46px;
  }

 .call-to-action .features .feature-item span {
     font-weight: 700;
 }

 .call-to-action .cta-buttons .btn {
     padding: 0.75rem 1.5rem;
     font-weight: 900;
     border-radius: 5rem;
     transition: all 0.3s ease;
     font-size: 26px;
 }

 .call-to-action .cta-buttons .btn.btn-primary {
     background-color: var(--accent-color);
     border-color: var(--accent-color);
     color: var(--contrast-color);
 }

 .call-to-action .cta-buttons .btn.btn-primary:hover {
     background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
     border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
     transform: translateY(-2px);
 }

 .call-to-action .cta-buttons .btn.btn-outline {
     border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
     color: var(--accent-color);
 }

 .call-to-action .cta-buttons .btn.btn-outline:hover {
     background-color: var(--accent-color);
     border-color: var(--accent-color);
     color: var(--contrast-color);
     transform: translateY(-2px);
 }

 .call-to-action .content-right {
     flex-shrink: 0;
     max-width: 100%;
     width: 450px;
 }

 .call-to-action .content-right img {
     width: 100%;
     height: auto;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .call-to-action .content-right .floating-card {
     position: absolute;
     bottom: 2rem;
     right: -1rem;
     background: var(--surface-color);
     padding: 1rem;
     border-radius: 1rem;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     display: flex;
     align-items: center;
     gap: 1rem;
     animation: float 3s ease-in-out infinite;
 }

 .call-to-action .content-right .floating-card .card-icon {
     width: 3rem;
     height: 3rem;
     background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
     border-radius: 0.75rem;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .call-to-action .content-right .floating-card .card-icon i {
     color: var(--accent-color);
     font-size: 1.5rem;
 }

 .call-to-action .content-right .floating-card .card-content {
     display: flex;
     flex-direction: column;
 }

 .call-to-action .content-right .floating-card .card-content .stats-number {
     font-size: 1.25rem;
     font-weight: 700;
     color: var(--accent-color);
 }

 .call-to-action .content-right .floating-card .card-content .stats-text {
     font-size: 0.875rem;
     opacity: 0.8;
 }

 .call-to-action .decoration {
     position: absolute;
     inset: 0;
     pointer-events: none;
     overflow: hidden;
     z-index: 0;
 }

 .call-to-action .decoration .circle-1,
 .call-to-action .decoration .circle-2 {
     position: absolute;
     border-radius: 50%;
     background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
 }

 .call-to-action .decoration .circle-1 {
     width: 300px;
     height: 300px;
     top: -150px;
     right: -150px;
     opacity: 0.5;
 }

 .call-to-action .decoration .circle-2 {
     width: 200px;
     height: 200px;
     bottom: -100px;
     left: -100px;
     opacity: 0.3;
 }

 @media (max-width: 991.98px) {
     .call-to-action {
         padding: 2rem;
     }

     .call-to-action .content-right {
         width: 100%;
         margin-top: 2rem;
     }

     .call-to-action .content-right .floating-card {
         position: relative;
         bottom: auto;
         right: auto;
         margin-top: -3rem;
         margin-right: 1rem;
         z-index: 1;
     }
 }

 @keyframes float {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-10px);
     }
 }


 /*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/

 .faq .faq-title {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 1rem;
     color: var(--heading-color);
 }

 .faq .faq-description {
     font-size: 1rem;
     color: var(--default-color);
     margin-bottom: 2rem;
 }

 .faq .faq-arrow {
     color: var(--accent-color);
 }

 .faq .faq-container .faq-item {
     background-color: var(--surface-color);
     position: relative;
     padding: 20px;
     margin-bottom: 15px;
     border-radius: 10px;
     overflow: hidden;
 }

 .faq .faq-container .faq-item:last-child {
     margin-bottom: 0;
 }

 .faq .faq-container .faq-item h3 {
     font-weight: 600;
     font-size: 16px;
     line-height: 24px;
     margin: 0 30px 0 0;
     transition: 0.3s;
     cursor: pointer;
     display: flex;
     align-items: center;
 }

 .faq .faq-container .faq-item h3 .num {
     color: var(--accent-color);
     padding-right: 5px;
 }

 .faq .faq-container .faq-item h3:hover {
     color: var(--accent-color);
 }

 .faq .faq-container .faq-item .faq-content {
     display: grid;
     grid-template-rows: 0fr;
     transition: 0.3s ease-in-out;
     visibility: hidden;
     opacity: 0;
 }

 .faq .faq-container .faq-item .faq-content p {
     margin-bottom: 0;
     overflow: hidden;
 }

 .faq .faq-container .faq-item .faq-toggle {
     position: absolute;
     top: 20px;
     right: 20px;
     font-size: 16px;
     line-height: 0;
     transition: 0.3s;
     cursor: pointer;
 }

 .faq .faq-container .faq-item .faq-toggle:hover {
     color: var(--accent-color);
 }

 .faq .faq-container .faq-active h3 {
     color: var(--accent-color);
 }

 .faq .faq-container .faq-active .faq-content {
     grid-template-rows: 1fr;
     visibility: visible;
     opacity: 1;
     padding-top: 10px;
 }

 .faq .faq-container .faq-active .faq-toggle {
     transform: rotate(90deg);
     color: var(--accent-color);
 }

 /*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

 .contact .contact-info-box {
     background-color: var(--surface-color);
     border-radius: 10px;
     box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
     padding: 25px;
     height: 100%;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     display: flex;
     align-items: flex-start;
     gap: 15px;
 }

 .contact .contact-info-box:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
 }

 .contact .contact-info-box .icon-box {
     background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
     color: var(--accent-color);
     width: 50px;
     height: 50px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .contact .contact-info-box .icon-box i {
     font-size: 24px;
 }

 .contact .contact-info-box .info-content h4 {
     font-size: 18px;
     font-weight: 600;
     margin-bottom: 10px;
 }

 .contact .contact-info-box .info-content p {
     margin-bottom: 5px;
     color: color-mix(in srgb, var(--default-color), transparent 20%);
     font-size: 15px;
     line-height: 1.5;
 }

 .contact .contact-info-box .info-content p:last-child {
     margin-bottom: 0;
 }



 .contact .contact-form-wrapper {
     background-color: var(--surface-color);
     border-radius: 12px;
     box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
     padding: 40px;
 }

 .contact .contact-form-wrapper h2 {
     font-size: 28px;
     font-weight: 700;
     margin-bottom: 30px;
     position: relative;
 }

 .contact .contact-form-wrapper h2:after {
     content: "";
     position: absolute;
     left: 50%;
     bottom: -10px;
     transform: translateX(-50%);
     width: 50px;
     height: 3px;
     background-color: var(--accent-color);
 }

 .contact .contact-form-wrapper .form-group {
     margin-bottom: 20px;
 }

 .contact .contact-form-wrapper .form-group .input-with-icon {
     position: relative;
 }

 .contact .contact-form-wrapper .form-group .input-with-icon i {
     position: absolute;
     left: 15px;
     top: 50%;
     transform: translateY(-50%);
     color: color-mix(in srgb, var(--default-color), transparent 40%);
     font-size: 18px;
     z-index: 10;
 }

 .contact .contact-form-wrapper .form-group .input-with-icon i.message-icon {
     top: 28px;
 }

 .contact .contact-form-wrapper .form-group .input-with-icon textarea + i {
     top: 25px;
     transform: none;
 }

 .contact .contact-form-wrapper .form-group .input-with-icon .form-control {
     border-radius: 8px;
     padding: 12px 15px 12px 45px;
     height: 3.5rem;
     color: var(--default-color);
     background-color: var(--surface-color);
     font-size: 15px;
     border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
 }

 .contact .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
     border-color: var(--accent-color);
     box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
 }

 .contact .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
     color: color-mix(in srgb, var(--default-color), transparent 40%);
 }

 .contact .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
     /*
     height: 180px;
     resize: none;
     padding-top: 15px;
*/
 }

 .contact .contact-form-wrapper .btn-submit {
     background-color: var(--accent-color);
     border: none;
     color: var(--contrast-color);
     padding: 12px 30px;
     font-size: 16px;
     font-weight: 600;
     letter-spacing: 1px;
     border-radius: 8px;
     transition: all 0.3s ease;
     box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
 }

 .contact .contact-form-wrapper .btn-submit:hover {
     background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
     transform: translateY(-3px);
     box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
 }

 .contact .contact-form-wrapper .btn-submit:active {
     transform: translateY(0);
     box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
 }

 .contact .contact-form-wrapper .loading,
 .contact .contact-form-wrapper .error-message,
 .contact .contact-form-wrapper .sent-message {
     margin-top: 10px;
     margin-bottom: 20px;
 }

 @media (max-width: 992px) {
     .contact .form-container-overlap {
         margin-top: -120px;
     }

     .contact .contact-form-wrapper {
         padding: 30px;
     }
 }

 @media (max-width: 768px) {
     .contact .contact-info-box {
         margin-bottom: 20px;
     }

     .contact .form-container-overlap {
         margin-top: -100px;
     }

     .contact .contact-form-wrapper {
         padding: 25px;
     }

     .contact .contact-form-wrapper h2 {
         font-size: 24px;
     }

     .contact .map-section {
         height: 450px;
     }
 }

 @media (max-width: 576px) {
     .contact .form-container-overlap {
         margin-top: -80px;
     }

     .contact .contact-form-wrapper {
         padding: 20px;
     }

     .contact .btn-submit {
         width: 100%;
     }

     .contact .map-section {
         height: 400px;
     }
 }

 /* */


 /* Why India Section Styling */
 .why-india {
     background-color: var(--background-color);
     color: var(--default-color);
 }

 .why-india .why-card {
     background-color: rgba(255, 255, 255, 0.03);
     border: 1px solid rgba(255, 255, 255, 0.08);
     border-radius: 20px;
     padding: 2rem;
     transition: all 0.4s ease;
     height: 100%;
     text-align: center;
     position: relative;
     overflow: hidden;
     backdrop-filter: blur(6px);
     box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
 }

 .why-india .why-card:hover {
     transform: translateY(-8px) scale(1.02);
     box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3);
 }

 .why-india .why-icon {
     font-size: 2.5rem;
     color: var(--accent-color);
     margin-bottom: 1rem;
 }

 .why-india .why-card h4 {
     font-size: 1.3rem;
     font-weight: 600;
     color: var(--heading-color);
     margin-bottom: 1rem;
 }

 .why-india .why-card p {
     font-size: 1.05rem;
     color: var(--default-color);
     line-height: 1.6;
 }

 .why-india .section-title hr {
     border-color: var(--accent-color);
     height: 3px;
     opacity: 1;
     border-radius: 50px;
 }
