
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

/* TOP BAR */
.top-bar {
    background: linear-gradient(90deg, #002a5d 0%, #023471 50%, #034391 100%);
    padding: 8px 0;
    text-align: right;
}
.top-bar a { 
    color: #fff; 
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
}

/* NAVBAR */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.85);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
   
}

.navbar-brand {
    font-size: 28px;
    font-weight: 700;
    color: #2596BE !important;
}

.nav-link {
    color: #333 !important;
    margin: 0 10px;
    position: relative;
    transition: 0.3s;
}

.nav-link:hover {
    color: #2596BE !important;
}

.nav-link.active {
    color: #2596BE !important;
    font-weight: 600;
}

/* SLIDER */
.swiper {
    height: 90vh;
}

.swiper-slide {
    position: relative;
}
@media (max-width: 768px) {
    .swiper-slide img {
        height: 40vh; 
         width: 100% !important;
    }
    .swiper {
    height: 40vh;
}

.footer-social{
        place-content: center;
}
 .story-text, .section-title{
    padding: 40px !important;
 }
}
.swiper-slide img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
    transform: scale(1);
    transition: 5s ease;
}

/* ZOOM ANIMATION */
.swiper-slide-active img {
    transform: scale(1.1);
}

/* OVERLAY */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient( rgba(0,0,0,0.6), rgba(0,0,0,0.4) );
}

/* CONTENT */
.slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 600px;
}

.slide-content h1 {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
}

.slide-content p {
    margin-top: 15px;
    font-size: 16px;
    opacity: 0.9;
}

.slide-content a {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    border-radius: 30px;
    background: linear-gradient(45deg, #2596BE, #7CC7E3);
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.slide-content a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* SWIPER BUTTON */
.swiper-button-next,
.swiper-button-prev {
    color: #fff;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .slide-content h1 {
        font-size: 32px;
    }
    .slide-content {
        left: 5%;
    }
}
:root {
    --primary: #2596be;
    --dark: #03397b;
    --light: #f5f9fc;
}
 
/* ================= HEADER / BREADCRUMB ================= */
.page-header {
      background: linear-gradient(135deg, #41a6ca, #033e85);
    color: #fff;
    padding: 50px 0 30px;
}

.page-header h2 {
    font-weight: 700;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.breadcrumb a {
    color: #e0f2fe;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #fff;
    font-weight: 500;
}

/* ================= SECTION ================= */
.section-title {
    text-align: center;
    margin: 50px 0 10px;
    font-weight: 700;
}

.section-title span {
    color: var(--primary);
}

.section-sub {
    text-align: center;
    color: #6c757d;
    margin-bottom: 40px;
}

/* ================= CARD ================= */
.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.25s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Image */
.product-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Content */
.product-body {
    padding: 15px;
    flex-grow: 1;
}

.product-body h5 {
    font-size: 16px;
    font-weight: 600;
}

.product-body p {
    font-size: 13px;
    color: #6c757d;
    margin-top: 8px;
}

/* Button */
.product-footer {
    padding: 15px;
}

.view-btn {
    width: 100%;
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 8px;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.25s;
}

.view-btn:hover {
    background: var(--dark);
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
    .page-header {
        padding: 40px 0 20px;
    }

    .section-title {
        font-size: 22px;
    }
}
:root {
    --primary: #2596be;
    --dark: #03397b;
    --border: #e6eaf0;
}

/* Base */
body {
    background: #f7f9fc;
    font-family: 'Inter', sans-serif;
}

/* Layout */
.product-page {
    padding: 50px 0;
}

/* ===== CARD ===== */
.card-clean {
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 25px;
}

/* ===== IMAGE ===== */
.main-img {
    width: 100%; 
    object-fit: contain;
    border-radius: 10px;
    background: #f1f5f9; 
}

/* Thumbnails */
.thumb-wrap {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.thumb {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: 0.2s;
}

.thumb.active {
    border: 2px solid var(--primary);
}

.thumb:hover {
    border-color: var(--primary);
}

/* ===== INFO ===== */
.product-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

/* ===== DETAILS ===== */
.detail-section {
    margin-top: 30px;
}

.tabs-clean {
    border-bottom: 1px solid var(--border);
}

.tabs-clean button {
    border: none;
    background: none;
    padding: 10px 15px;
    color: #555;
    font-weight: 500;
}

.tabs-clean button.active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

/* Content */
.tab-content {
    padding-top: 20px;
    color: #444;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsive */
@media(max-width:768px){
    
    .product-title {
        font-size: 20px;
    }
}

/* ===== MARQUEE ===== */
.top-marquee {
    background: linear-gradient(90deg, #2596BE, #7CC7E3);
    color: #fff;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: scrollText 15s linear infinite;
    font-weight: 500;
}

@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* ===== ABOUT ===== */
.about-section {
    background: #f8fafc;
}

.section-tag {
    color: #2596BE;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin: 15px 0;
}

.section-text {
    color: #555;
    line-height: 1.7;
}

/* IMAGE DESIGN */
.about-img-wrapper {
    position: relative;
}

.main-img {
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* EXPERIENCE BOX */
.exp-box {
    position: absolute;
    top: 30px;
    left: -20px;
    background: linear-gradient(45deg, #329cc1, #71c1de);
    color: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.exp-box h2 {
    font-size: 30px;
    margin: 0;
}

.exp-box p {
    margin: 0;
    font-size: 14px;
}

/* BUTTON */
.btn-custom {
    display: inline-block;
    margin-top: 5px;
    padding: 12px 28px;
    border-radius: 30px;
    background: linear-gradient(45deg, #2596BE, #7CC7E3);
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.btn-custom:hover {
    transform: translateY(-3px);
}

/* INDUSTRY */
.industries h5 {
    margin-bottom: 15px;
    font-weight: 600;
}

.industry-grid {
    display: flex;
    gap: 15px;
}

.industry-card {
    overflow: hidden;
    border-radius: 10px;
    flex: 1;
    transition: 0.4s;
}

.industry-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: 0.4s;
}

.industry-card:hover img {
    transform: scale(1.1);
}

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

    .exp-box {
        left: 10px;
        top: 10px;
        padding: 15px;
    }

    .section-title {
        font-size: 24px;
    }

    .industry-grid {
        flex-direction: column;
    }
}

    .contact-section {
        padding: 60px 0;
    }

    .contact-title {
        font-weight: 700;
        font-size: 38px;
    }

    .contact-subtitle {
        color: #6c757d;
        margin-bottom: 40px;
    }

    .info-card {
        background: #fff;
        border-radius: 12px;
        padding: 15px;
        display: flex;
        align-items: start;
        gap: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        transition: 0.3s;
    }

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

    .icon-box {
        width: 50px;
        height: 50px;
        background: #e9f2ff;
        color: #0d6efd;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }

    .form-card {
        background: #fff;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    }

    .form-control {
        border-radius: 8px;
        padding: 12px;
    }

    .form-control:focus {
        box-shadow: none;
        border-color: #0d6efd;
    }

    textarea.form-control {
        height: 140px;
        resize: none;
    }

    .btn-send {
        background-color: #68bcdb;
        border: none;
        padding: 12px;
        border-radius: 8px;
        font-weight: 600;
        transition: 0.3s;
    }

    .btn-send:hover {
        transform: scale(1.02);
        box-shadow: 0 5px 15px rgba(13,110,253,0.4);
    }
    :root{
    --primary:#02387b;
    --accent:#4cacce;
}

/* SECTION */
.gallery-section{
    padding:100px 0;
    background:#fff;
}

/* HEADING */
.gallery-heading{
    text-align:center;
    margin-bottom:70px;
}
.gallery-heading h2{
    font-size:36px;
    font-weight:700;
    color:var(--primary);
}
.gallery-heading p{
    color:#6c757d;
}

/* CARD */
.gallery-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:0.4s;
    box-shadow:0 8px 25px rgba(0,0,0,0.05);
    height:100%;
}

/* IMAGE WRAP */
.gallery-img{
    overflow:hidden;
    position:relative;
}

/* IMAGE */
.gallery-img img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:0.6s;
}

/* CONTENT */
.gallery-content{
    padding:18px;
}

/* TITLE */
.gallery-content h6{
    margin:0;
    font-size:16px;
    font-weight:600;
    color:#333;
    position:relative;
    display:inline-block;
}

/* UNDERLINE EFFECT */
.gallery-content h6::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-5px;
    width:0%;
    height:2px;
    background:linear-gradient(90deg,var(--primary),var(--accent));
    transition:0.4s;
}

/* HOVER EFFECT */
.gallery-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,0.08);
}

.gallery-card:hover img{
    transform:scale(1.08);
}

.gallery-card:hover h6::after{
    width:100%;
}


/* COLORS */
:root{
    --primary:#02387b;
    --accent:#4cacce;
}

/* SECTION */
.section{
    padding:40px 0;
}

/* TITLE */
.section-title{
    text-align:center;
    margin-bottom:60px;
}
.section-title h2{
    font-weight:700;
    font-size:34px;
    color:var(--primary);
}
.section-title p{
    color:#6c757d;
}

/* ================= HERO ================= */

.hero{
    background:linear-gradient(135deg,#02387b10,#4cacce15);
    border-radius:25px;
    padding:70px 50px;
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:linear-gradient(135deg,#02387b,#4cacce);
    border-radius:50%;
    top:-80px;
    right:-80px;
    opacity:0.15;
}

.hero h2{
    font-weight:700;
    color:var(--primary);
    font-size:38px;
}

.hero p{
    color:#555;
}

.hero-img{
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,0.1);
}

/* ================= STORY ================= */

.story-text h3{
    font-weight:700;
    color:var(--primary);
}

.story-text p{
    color:#555;
    line-height:1.7;
}

/* ================= CARDS ================= */

.card-modern{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
    transition:0.4s;
    border:1px solid #f1f1f1;
    position:relative;
    overflow:hidden;
}

.card-modern::before{
    content:"";
    position:absolute;
    width:100%;
    height:3px;
    top:0;
    left:0;
    background:linear-gradient(90deg,#02387b,#4cacce);
}

.card-modern:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

/* ICON */
.icon{
    width:55px;
    height:55px;
    border-radius:15px;
    background:linear-gradient(135deg,#02387b,#4cacce);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

/* TEXT */
.card-modern h5{
    font-weight:600;
    color:var(--primary);
}

.card-modern p{
    color:#6c757d;
}

/* SMALL ANIMATION */
.card-modern:hover .icon{
    transform:rotate(10deg) scale(1.1);
    transition:0.4s;
}

  /* Force dropdown to appear on hover */
.nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
}

/* Ensure dropdown is visible */
.dropdown-menu {
    display: none;
    position: absolute;
    z-index: 99999;
}
/* Navbar should stay above everything */
.navbar {
    position: relative;
    z-index: 9999;
}

/* Dropdown menu above slider */
.navbar .dropdown-menu {
    z-index: 99999;
    position: absolute;
}

/* Submenu also above */
.dropdown-submenu .dropdown-menu {
    z-index: 99999;
}
/* Submenu */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    display: none;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block !important;
}
/* Sticky Navbar */
.custom-navbar {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: #fff;
    transition: all 0.3s ease;
}

/* Shadow on scroll */
.custom-navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* Top bar fix */
.top-bar {
    background: #033e85;
    color: #fff;
    padding: 8px 0;
    text-align: right;
}
 /* FOOTER */
.footer {
    background: linear-gradient(135deg, #000000, #080808, #0b0c0c);
    color: #fff;
    padding: 60px 0 0;
}

/* TITLES */
.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.footer-title::after {
    content: "";
    width: 40px;
    height: 3px;
    background: linear-gradient(45deg, #2596BE, #7CC7E3);
    display: block;
    margin-top: 8px;
}

/* TEXT */
.footer-text {
    font-size: 14px;
    color: #ccc;
}

.footer-address {
    font-size: 14px;
    color: #aaa;
    margin-top: 10px;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #2596BE;
    padding-left: 5px;
}

/* CONTACT */
.footer-contact {
    list-style: none;
    padding: 0;
    color: #ccc;
}

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

/* SOCIAL */
.footer-social a {
    display: inline-block;
    margin-right: 10px;
    background: #fff;
    color: #333;
    padding: 8px 10px;
    border-radius: 50%;
    transition: 0.3s;
}

.footer-social a:hover {
    background: linear-gradient(45deg, #2596BE, #7CC7E3);
    color: #fff;
}

/* BOTTOM */
.footer-bottom {
    margin-top: 30px;
    padding: 15px;
    background: #2596BE;
    font-size: 14px;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .footer {
        text-align: center;
    }
}
:root{
    --primary:#02387b;
    --accent:#4cacce;
}

 
/* TITLE */
.section-title{
    text-align:center;
    margin-bottom:70px;
}
.section-title h2{
    font-weight:700;
    font-size:34px;
    color:var(--primary);
}
.section-title p{
    color:#6c757d;
}

/* ================= VALUES ================= */

.values-section{
    background:linear-gradient(135deg,#02387b,#4cacce);
    border-radius:25px;
    padding:60px 30px;
}

.value-card{
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(15px);
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    color:#000000;
    transition:0.4s;
    position:relative;
    overflow:hidden;
}

.value-card::before{
    content:"";
    position:absolute;
    width:120%;
    height:120%;
    background:rgba(255,255,255,0.1);
    top:-100%;
    left:-100%;
    transform:rotate(45deg);
    transition:0.5s;
}

.value-card:hover::before{
    top:0;
    left:0;
}

.value-card:hover{
    transform:translateY(-12px) scale(1.04);
    background:#fff;
    color:#02387b;
}

.value-icon{
    font-size:40px;
    margin-bottom:15px;
}

/* ================= TEAM ================= */

.team-card{
    border-radius:25px;
    overflow:hidden;
    position:relative;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.4s;
}

.team-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:0.5s;
}

.team-info{
    position:absolute;
    bottom:0;
    width:100%;
    padding:20px;
    background:linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color:#fff;
    transition:0.4s;
}

.team-card:hover img{
    transform:scale(1.1);
}

.team-card:hover{
    transform:translateY(-10px);
}

/* Name */
.team-info h6{
    margin:0;
    font-size:18px;
    font-weight:600;
}

/* Role */
.team-info small{
    opacity:0.8;
}

/* Social icons */
.social-icons{
    margin-top:10px;
}
.social-icons i{
    margin-right:8px;
    font-size:14px;
    cursor:pointer;
    transition:0.3s;
}
.social-icons i:hover{
    color:var(--accent);
}
.service-card {
  transition: all 0.3s ease;
  border-radius: 12px;
}
.service-card:hover {
  transform: translateY(-8px);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: #e9f2ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  font-size: 24px;
  color: #0d6efd;
}

.process-step {
  position: relative;
}
.step-number {
  font-size: 40px;
  color: #cfe2ff;
  font-weight: bold;
}

.cta-section {
  background: linear-gradient(135deg, #3a7bd5, #00d2ff);
}
.gallery-img img {
    cursor: pointer;
    transition: 0.3s;
    border-radius: 10px;
}

.gallery-img img:hover {
    transform: scale(1.05);
}
/* Fix modal behind header issue */
.modal {
    z-index: 9999 !important;
}

.modal-backdrop {
    z-index: 9998 !important;
}

/* ===== COMMON ===== */
.section-tag {
    color: #2596BE;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-top: 10px;
}

/* ===== PRODUCTS ===== */
.products-section {
    background: #f8fafc;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: 0.5s;
}

.product-card:hover img {
    transform: scale(1.1);
}

/* OVERLAY */
.product-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 20px;
    opacity: 0;
    transition: 0.4s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-overlay h5 {
    color: #fff;
    margin-bottom: 10px;
}

.product-overlay a {
    padding: 8px 20px;
    background: linear-gradient(45deg, #2596BE, #7CC7E3);
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
}

/* BUTTON */
.btn-main {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    background: linear-gradient(45deg, #2596BE, #7CC7E3);
    color: #fff;
    text-decoration: none;
}
/* ===== CLIENTS ===== */
.clients-section {
    background: #f8fafc;
}

.section-tag {
    color: #2596BE;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
}

/* SLIDER */
.logo-slider {
    overflow: hidden;
    position: relative;
}

.logo-track {
    display: flex;
    width: calc(250px * 12);
    animation: scroll 25s linear infinite;
}

/* LOGO BOX */
.logo {
    width: 250px;
    padding: 15px;
}

.logo img {
    width: 100%;
    /* filter: grayscale(100%); */
    opacity: 0.7;
    transition: 0.3s;
}

/* HOVER */
.logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* ANIMATION */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* MOBILE */
@media(max-width:768px) {
    .logo {
        width: 180px;
    }

    .section-title {
        font-size: 24px;
    }
}

/* RESPONSIVE */
@media(max-width:768px) {
    .section-title {
        font-size: 24px;
    }
}
.logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logo-track {
    display: flex;
    width: calc(200%); /* double for loop */
    animation: scroll 25s linear infinite;
}

.logo {
    flex: 0 0 auto;
    width: 150px;
    padding: 10px;
    text-align: center;
}

.logo img {
    max-height: 70px;
    object-fit: contain; 
    opacity: 0.7;
    transition: 0.3s;
}

.logo img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* Background */
.thankyou-wrapper {
    height: 100vh;
    background: linear-gradient(135deg, #033e84, #56b1d3);
    font-family: 'Segoe UI', sans-serif;
}

/* Glass Card */
.thankyou-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    color: #fff;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease;
}

/* Title */
.title {
    font-size: 36px;
    font-weight: 700;
}

/* Subtitle */
.subtitle {
    font-size: 16px;
    opacity: 0.9;
}

/* Button */
.home-btn {
    background: #fff;
    color: #033e84;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s;
}

.home-btn:hover {
    background: #033e84;
    color: #fff;
    border: 1px solid #fff;
}

/* Checkmark Animation */
.checkmark-circle {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    margin: auto;
    position: relative;
}

.checkmark {
    width: 25px;
    height: 50px;
    border-right: 5px solid #56b1d3;
    border-bottom: 5px solid #56b1d3;
    transform: rotate(45deg);
    position: absolute;
    top: 15px;
    left: 28px;
    animation: drawCheck 0.6s ease forwards;
}

/* Animations */
@keyframes drawCheck {
    0% {
        height: 0;
        width: 0;
        opacity: 0;
    }
    50% {
        height: 50px;
        width: 0;
        opacity: 1;
    }
    100% {
        height: 50px;
        width: 25px;
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.contact-box {
    display: flex !important;
    align-items: flex-start !important;
    text-align: left !important;
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    gap: 15px;
}

.contact-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 50%;
    background: #dfe7f3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 24px;
    color: #68bcdb;
}

.contact-text {
    text-align: left !important;
}

.contact-text h6 {
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-text p {
    margin: 0;
    color: #6c757d;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    font-size: 28px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: 0.3s;
}

.whatsapp-float:hover {
    background-color: #1ebe5d;
    color: #fff;
}
.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 18px;
    color: #fff;
    background: #1a1a1a; /* dark base */
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

/* Hover with Brand Colors */
.social-icon.facebook:hover {
    background: #1877f2;
}
.social-icon.twitter:hover {
    background: #000000;
}
.social-icon.linkedin:hover {
    background: #0a66c2;
}
.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* Hover Effect */
.social-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.5);
    border-color: transparent;
}


.top-contact {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.top-contact li {
    margin-right: 20px; /* space between phone & email */
    display: flex;
    align-items: center;
}

.quote-btn {
    background: #ffc107;
    color: #000;
    padding: 6px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
}

.quote-btn:hover {
    background: #e0a800;
    color: #000;
}
.top-contact li {
    display: flex;
    align-items: center;
    margin-right: 20px;
    color: #fff; /* text white */
}

.top-contact li i {
    color: #fff;       /* icon white */
    margin-right: 8px; /* space between icon & text */
    font-size: 14px;
}
li a {
    text-decoration: none;
    color: white;
}