*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}
body{
    background:#0a2a43;
    color:#333;
    overflow-x: hidden;
}
a{
  text-decoration:none
}

/* ================= NAVBAR ================= */
.navbar{
    position:fixed;
    top:0;
    width:100%;
    z-index:1000;
    background:rgba(10,42,67,0.95);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 50px;
}

/* LOGO */
.logo{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-size:22px;
    font-weight:bold;
    margin-left: 5px;
}
.logo img{
    height:60px;
}
.logo span{
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}


.nav-links a{
    color:#fff;
    font-size:18px;
    font-weight: bold;
}
.nav-links a:hover{
    color:#00c2ff;
}


.nav-links{
  list-style:none;
  display:flex;
  align-items:center;
  gap:25px;
}

.nav-links li{
  position:relative;
}

.nav-links a{
  color:#fff;
  text-decoration:none;
  font-size:15px;
  padding:8px 10px;
  display:flex;
  align-items:center;
  gap:6px;
}

/* Dropdown menu */
.dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  background:#0a2a43;
  min-width:150px;
  border-radius:8px;
  padding:10px 0;
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:.3s;
  box-shadow:0 10px 25px rgba(0,0,0,.4);
  z-index:999;
  list-style: none;
  margin: 0;
}

.dropdown-menu li a{
  padding:10px 18px;
  display:block;
  font-size:14px;
}

.dropdown-menu li a:hover{
  background:#00c2ff;
  color:#000;
}

/* Hover open */
.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.social{
margin-left:-10px;
}

.social a{
padding:6px 6px;
}
.nav-links .social a {
    border: 2px solid transparent;
    border-radius: 50%;
    padding: 8px;
    transition: all 0.3s ease;
}
.nav-links .social a:hover {
    border-color: #00c2ff;
    transform: rotate(10deg) scale(1.1);
}
.nav-links li.dropdown a i {
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-links li.dropdown:hover a i {
    transform: rotate(180deg);
    color: #00c2ff;
}
.nav-links li a {
    position: relative;
    transition: all 0.3s ease;
    color: #fff;
    padding: 8px 10px;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #00c2ff;
    transition: all 0.3s ease;
    border-radius: 2px;
    transform: translateX(-50%);
}

.nav-links li a:hover::after {
    width: 80%;
}

.nav-links li a:hover {
    transform: translateY(-2px);
}

.nav-links li.dropdown:hover a i {
    transform: rotate(180deg);
    color: #00c2ff;
}
/* Hide nav links and show hamburger on mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    cursor: pointer;
    z-index: 1002;
  }

  .hamburger span {
    width: 100%;
    height: 3px;
    background: #fff;
    transition: 0.3s;
    border-radius: 3px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100vh;
    background: #0a2a43;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 20px 30px;
    gap: 15px;
    transition: left 0.3s ease;
    z-index: 1001;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0,0,0,0.3);
    display: flex !important;
  }

  .nav-links.open {
    left: 0;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links li a {
    width: 100%;
    padding: 12px 15px;
    color: #fff;
    font-size: 16px;
  }

  .hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
}
/* ===== MOBILE SIDEBAR SOCIAL ICONS ===== */
@media (max-width: 768px) {
    
    .nav-links li.desktop-social {
        display: none !important;
    }
    
    .nav-links .mobile-social-icons-container {
        display: block !important;
        width: 100% !important;
        list-style: none !important;
        margin-top: 10px !important;  
        padding: 0 !important;
    }
    
    .mobile-social-icons {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 15px !important;  
        padding: 10px 0 !important;  
        
        width: 100% !important;
    }
    
    .social-icon-mobile {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 40px !important; 
        height: 40px !important;  
        background: rgba(255, 255, 255, 0.15) !important;
        border-radius: 50% !important;
        color: #fff !important;
        font-size: 18px !important;  
        transition: all 0.3s ease !important;
        text-decoration: none !important;
    }
    
    .social-icon-mobile:hover {
        background: #00c2ff !important;
        transform: scale(1.1) !important;
    }
}


@media (min-width: 769px) {
    
    .nav-links .mobile-social-icons-container {
        display: none !important;
    }
    
    
    .nav-links li.desktop-social {
        display: inline-flex !important;
    }
}
/* ===== SHOW LOGO IN MOBILE SIDEBAR ===== */
@media (max-width: 768px) {
    .nav-links .mobile-logo {
        display: block !important;
        text-align: center;
         padding: 10px 0; 
         margin-top: 0 0 15px 0;    
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        width: 100%;
        list-style: none;
    }
    
    .nav-links .mobile-logo img {
        height: 40px;           
        width: auto;
        filter: brightness(0) invert(1);
        display: block;
        margin: 0 auto;
    }
    
    
    .nav-links {
        padding-top: 30px !important;  
    }
}

/* Desktop  mobile-logo hide */
@media (min-width: 769px) {
    .nav-links .mobile-logo {
        display: none !important;
    }
}
/* ================= HERO ================= */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-top: 0px;
}

.slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  z-index:1;
  transition:opacity 1.5s ease-in-out;
}


/* overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

/* hero content exact center */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);  
  z-index: 3;
  color: #fff;
  text-align: center;
  width: 100%;
  max-width: 800px;
}

/* optional spacing */
.hero h1{
  font-size:42px;
  margin-bottom:10px;
}

.hero p{
  font-size:18px;
}

        body {
            font-family: 'Inter', sans-serif;
            background-color: #f9fafc;
            color: #1e293b;
            line-height: 1.5;
            overflow-x: hidden;
        }

        .contact-section {
            max-width: 1280px;
            margin: 0 auto;
            padding: 60px 24px;
        }

        /* === HEADER === */
        .contact-header {
            margin-bottom: 48px;
        }

        .contact-subtitle {
            color: #123c5c;
            font-size: 15px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 8px;
            display: block;
        }

        .contact-title {
            font-size: 36px;
            font-weight: 700;
            color: #0f172a;
            margin-top: 0;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .contact-title span {
            color: #123c5c;
        }

        .contact-description {
            font-size: 17px;
            color: #475569;
            max-width: 700px;
        }

        /* === TWO COLUMN LAYOUT: LEFT FORM | RIGHT DETAILS === */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            margin-bottom: 60px;
        }

        /* === LEFT COLUMN: FORM === */
        .form-container {
            background: white;
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            border: 1px solid #e2e8f0;
        }

        .form-container h3 {
            font-size: 24px;
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 8px;
        }

        .form-container p {
            color: #64748b;
            margin-bottom: 28px;
            font-size: 15px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: #1e293b;
            margin-bottom: 6px;
        }

        .form-group label i {
            color: #2563eb;
            margin-right: 8px;
            width: 16px;
        }

        .form-control {
            width: 100%;
            padding: 14px 18px;
            font-size: 15px;
            border: 1px solid #cbd5e1;
            border-radius: 12px;
            font-family: 'Inter', sans-serif;
            background: #fafcff;
            transition: all 0.2s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: #2563eb;
            box-shadow: 0 0 0 4px rgba(37,99,235,0.1);
            background: white;
        }

        textarea.form-control {
            resize: vertical;
            min-height: 130px;
        }

        .btn-submit {
            background: #123c5c;
            color: white;
            border: none;
            padding: 15px 32px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 40px;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            width: 100%;
            transition: all 0.25s;
            margin-top: 8px;
            border: 2px solid transparent;
        }

        .btn-submit i {
            font-size: 15px;
            transition: transform 0.2s;
        }

        .btn-submit:hover {
            background: #0f172a;
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(37,99,235,0.2);
        }

        .btn-submit:hover i {
            transform: translateX(5px);
        }

        .error-message {
            color: #dc2626;
            font-size: 12px;
            margin-top: 5px;
            display: none;
        }

        .success-message {
            background: #eff6ff;
            color: #0f172a;
            padding: 16px;
            border-radius: 12px;
            margin-top: 25px;
            text-align: center;
            border-left: 5px solid #2563eb;
            display: none;
        }

        .success-message i {
            color: #2563eb;
            font-size: 22px;
            margin-right: 8px;
        }

        /* === RIGHT COLUMN: CONTACT DETAILS === */
        .details-container {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }

        .detail-card {
            background: white;
            padding: 30px;
            border-radius: 24px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.01);
            border: 1px solid #e2e8f0;
            transition: all 0.25s;
        }

        .detail-card:hover {
            border-color: #2563eb40;
            box-shadow: 0 15px 30px rgba(37,99,235,0.05);
        }

        .detail-icon {
            width: 56px;
            height: 56px;
            background: #dbeafe;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .detail-icon i {
            font-size: 24px;
            color: #2563eb;
        }

        .detail-card h4 {
            font-size: 20px;
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 12px;
        }

        .detail-card p, .detail-card a {
            color: #475569;
            font-size: 16px;
            text-decoration: none;
            line-height: 1.7;
            display: block;
            
        }

        .detail-card a:hover {
            color: #2563eb;
        }

        .detail-divider {
            height: 1px;
            background: #e2e8f0;
            margin: 20px 0 16px;
        }
        .detail-card p:hover{
        color:#2563eb;
        cursor:pointer;
        }
 /* === MAP SECTION - FULL WIDTH BELOW === */
.map-section {
    width: 100%;
    margin: -20px 0;
}

.map-container {
    width: 95%;
    max-width: 1200px;
    margin: auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}
.email-image{
    text-align: center;
    margin-top: 15px;
}

.email-image img{
    width: 100%;
    max-width: 400px;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: opacity 0.6s ease-in-out;
}

/* ================= MOBILE RESPONSIVE (≤768px) ================= */
@media (max-width: 768px) {

  /* HERO SECTION */
  .hero {
    height: 50vh; 
    margin-top: 70px; 
  }

  .slide {
    background-position: center;
    background-size: cover;
  }

  .hero-content {
    padding: 15px;
    width: 90%;
    max-width: none;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.4;
  }

  /* CONTACT SECTION */
  .contact-section {
    padding: 40px 16px;
  }

  .contact-header {
    margin-bottom: 30px;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-description {
    font-size: 15px;
  }

  .contact-grid {
    display: block;
  }

  .form-container,
  .details-container {
    width: 100%;
    padding: 24px;
  }

  .form-container {
    border-radius: 16px;
    padding: 20px;
  }

  .form-container h3 {
    font-size: 20px;
  }

  .form-container p {
    font-size: 14px;
  }

  .form-group label {
    font-size: 13px;
  }

  .form-control {
    padding: 12px 14px;
    font-size: 14px;
  }

  .btn-submit {
    font-size: 14px;
    padding: 12px 20px;
  }

  /* CONTACT DETAILS CARDS */
  .detail-card {
    padding: 20px;
    border-radius: 16px;
  }

  .detail-card h4 {
    font-size: 18px;
  }

  .detail-card p,
  .detail-card a {
    font-size: 14px;
  }

  .detail-icon {
    width: 48px;
    height: 48px;
  }

  .detail-icon i {
    font-size: 20px;
  }

  /* MAP SECTION */
  .map-container {
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
  }

  .map-container iframe {
    height: 300px;
  }

  /* WhatsApp Sticky */
  .whatsapp-sticky {
    width: 50px;
    height: 50px;
    font-size: 24px;
    left: 15px;
    bottom: 15px;
  }

  /* REVEAL ELEMENTS STAGGER */
  .reveal {
    transition: all 0.6s ease-out;
  }

}

/* ================= FOOTER ================= */
.footer{
    background:rgba(10,42,67,0.95);
    color:#ccc;
    padding:5px 60px 10px;
}
.footer-grid{
    display:grid;
    grid-template-columns:1.2fr 0.8fr 1fr 1.2fr;
    gap:20px;
    font-size:large;
}
.footer-grid > div a{
    display:block;        
    margin-bottom:8px;
    line-height:1.5;
}

.footer-grid > div h3{
    margin-bottom:12px;
    line-height:3;
}
.footer-logo img{
    height:80px;
    margin-bottom:5px;
}

.footer-logo{
    margin-top: 30px;
    margin-bottom:15px;
}
 
.footer h3{
    color:#fff;
    margin-bottom:15px;
     
}
.footer a{
    color:#ccc;
    margin-bottom:8px;
}
.footer a{

    display:inline-block;
    transition:0.4s ease;

}
.footer-title:hover{

    letter-spacing:1px;
    transform:translateX(10px) scale(1.05);

}

/* Slide + Glow Effect */

.footer a:hover{

    color:#00c2ff;                 
    transform:translateX(8px);    

    text-shadow:0 0 8px #00c2ff;  

}

.footer-bottom{
    margin-top:40px;
    border-top:1px solid #060244;
    padding-top:15px;
    font-size:14px;
    overflow-x:auto;  
    overflow-x: hidden; 
    padding-left: 30px;       
}

.footer-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    white-space:nowrap;      
    flex-wrap:nowrap;
}

.footer-left,
.footer-right{
    white-space:nowrap;
    flex-shrink:0;            
}

.footer-link{
    color:#ccc;
    text-decoration:none;
    margin-left:6px;
}

.footer-link:hover{
    color:#00c853;
}
/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    font-size: 20px;
    text-decoration: none;

    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    place-items: center;
    line-height: 1;   
}
.social-icon i{
    display: block;
    line-height: 2;
    
}
.social-icon.facebook {
    background: #1877f2;  
}

.social-icon.email {

    background: #d44638; 

}

.social-icon.instagram {
    background: radial-gradient(circle at 30% 30%, #fd5949, #d6249f, #fd5949, #d6249f, #285AEB);
}

/* Hover Effects */
.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .social-icons {
        gap: 12px;
        margin-top: 20px;
    }
    
    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}
/* ================= RESPONSIVE ================= */
@media(max-width:768px){
    .hero-content{
        padding:20px;
    }
    .hero h1{
        font-size:32px;
    }
}
.footer-contact-item{

    transition:0.4s;
    line-height: 2.1;   
    padding:1px 0; 
}

.footer-contact-item:hover{

    transform:translateX(10px);
    color:#00c2ff;

}

.footer-contact-item:hover i{

    box-shadow:0 0 10px #00c2ff;
    transform:scale(1.2);

}


@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

/* ================= MOBILE VIEW ONLY ================= */
@media(max-width:768px){
    /* Footer padding reduce */
    .footer{
        padding:10px 20px 20px;
        text-align:center;
    }

    /* Grid → 1 column */
    .footer-grid{
        grid-template-columns:1fr;
        gap:25px;
        font-size:16px;
    }

    /* Logo center */
    .footer-logo{
        margin-top:10px;
        text-align:center;
    }

    .footer-logo img{
        height:70px;
    }

    /* Our Services section (2nd column) - HIDE */
    .footer-grid > div:nth-child(2) {
        display: none !important;
    }

    /* Contact section (3rd column) - LEFT ALIGN */
    .footer-grid > div:nth-child(3) {
        text-align: left !important;
        padding-left: 15px;
        display: block !important;
    }

    .footer-grid > div:nth-child(3) h3 {
        text-align: left !important;
        margin-left: 0;
    }

    .footer-grid > div:nth-child(3) .footer-contact-item {
        justify-content: flex-start !important;
        text-align: left !important;
        display: flex !important;
        align-items: center;
        margin-left: 0;
        padding-left: 5px;
    }

    .footer-grid > div:nth-child(3) .footer-contact-item i {
        margin-right: 15px;
        min-width: 20px;
        text-align: center;
    }

    .footer-grid > div:nth-child(3) .footer-contact-item span {
        text-align: left !important;
        flex: 1;
        margin-left: 0;
        padding-left: 0;
    }

    /*  email and location links */
    .footer-grid > div:nth-child(3) a.footer-contact-item {
        text-decoration: none;
        width: 100%;
    }

    /* Quick Links section (4th column) - LEFT ALIGN */
    .footer-grid > div:nth-child(4) {
        display: block !important;
        text-align: left !important;
        padding-left: 15px;
    }

    .footer-grid > div:nth-child(4) h3 {
        text-align: left !important;
    }

    .footer-grid > div:nth-child(4) a {
        text-align: left !important;
        display: block;
        padding-left: 5px;
    }

    /* Social icons center */
    .social-icons{
        justify-content:center;
    }

    /* Footer Bottom Fix */
    .footer-content{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    /* remove nowrap problem */
    .footer-left,
    .footer-right{
        white-space:normal;
    }

    .footer-right{
        margin-top:5px;
    }

    /* copyright links spacing */
    .footer-link{
        margin:5px;
    }
}

/* extra small mobile */
@media(max-width:480px){
    .footer{
        padding:25px 15px;
    }

    .footer h3{
        font-size:18px;
    }

    .social-icon{
        width:36px;
        height:36px;
        font-size:16px;
    }

    /* Hide Terms & Conditions and Privacy Policy */
    .footer-right{
        display:none;
    }
}
/* WhatsApp Sticky */
.whatsapp-sticky{
  position:fixed;
  left:20px;
  bottom:20px;
  width:55px;
  height:55px;
  background:#25d366;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  z-index:9999;
  box-shadow:0 8px 20px rgba(0,0,0,0.3);
  transition:0.3s;
}

.whatsapp-sticky:hover{
  transform:scale(1.1);
  background:#1ebe5d;
}
/* Initial hidden state */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

/* Revealed state */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* ================= RESPONSIVE (MOBILE ONLY) ================= */
@media (max-width: 768px) {
    
    
    .navbar {
        padding: 15px 20px;
    }

    .hamburger {
        display: flex;
    }
    .nav-links {
        position: fixed;
        top: 0; 
        right: -100%;
        width: 180px;
        height: 100vh; 
        background: #0a2a43;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 20px 20px; 
        gap: 15px;
        transition: right 0.3s ease;
        z-index: 1001;
        overflow-y: auto;
        box-shadow: -5px 0 20px rgba(0,0,0,0.3);
        display: flex;  
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        padding: 12px 15px;
        color: #fff;
        font-size: 16px;
    }

    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Mobile dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        width: 100%;
        padding-left: 15px;
        background: rgba(0, 0, 0, 0.2);
        box-shadow: none;
        margin-top: 5px;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 10px 15px;
        font-size: 15px;
        color: #fff;
    }

    /* Hero section mobile */
    .hero {
        height: 50vh;
        margin-top: 0;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    /* Company profile mobile */
    .profile-wrapper {
        grid-template-columns: 1fr;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .team-wrapper {
        padding: 0 20px;
    }

    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-grid > div:nth-child(2) {
        display: none;  /* Quick Links hide on mobile */
    }

    .social-icons {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}
































