* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
   --primary-color: #121212;      /* Off-Black / Deep Charcoal */
  --secondary-color: #FFD60A;    /* Vibrant, Rich Yellow */
  --accent-color: #FFEA7A;       /* Lighter Yellow for hovers */
  --success-color: #22C55E;      /* Standard Green */
  --warning-color: #FB8500;      /* Orange for warning distinction */
  --error-color: #D90429;        /* Strong Red */
  --text-primary: #121212;       /* Off-Black (same as primary) */
  --text-secondary: #888888;     /* Medium Gray */
  --bg-light: #FFFFFF;           /* Pure White for maximum contrast */
  --white: #FFFFFF;              /* Pure White */
  --gradient-primary: linear-gradient(135deg, #FFD60A 0%, #FFEA7A 100%);
  --gradient-secondary: linear-gradient(135deg, #F5F5F5 0%, #FFFFFF 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */



.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    border-color: rgb(1, 1, 73);
    background-color: rgb(1, 1, 73);
}

.navbar-divider {
    height: 1px;
}

/* --- Logo --- */
.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgb(0, 0, 78);
}

.logo-icon {
    color: var(--logo-orange);
    font-size: 2rem;
    font-weight: 700;
    margin-right: -5px;
}

.logo-text sup {
    font-size: 0.75rem;
    color: var(--text-color);
    top: -0.5em;
    left: 2px;
}
.logo h4{
    color: white;
    font-size: 20px;
}

/* --- Nav Links & Dropdowns --- */
/* Basic nav bar styling */
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  background-color: rgb(1, 1, 73);
}

.nav-item {
  position: relative;
}

.nav-links a {
  display: block;
  padding: 15px 15px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size:15px;
}



/* Dropdown menu styling */

.dropdown-menu {
  display: none; /* Hidden by default */
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 250px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 1000; /* Increase this value significantly */
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-menu li a {
  padding: 12px 16px;
  color: #555;
  white-space: nowrap; /* Prevents text from wrapping */
}

.dropdown-menu li a:hover {
  color:chocolate;
}
.dropdown-menu li a:hover::before {
  content: '\f0da'; /* Unicode for the right arrow icon */
  font-family: 'Font Awesome 5 Free'; /* Replace with your Font Awesome version */
  font-weight: 900;
  margin-right: 5px; /* Adds a small space between the icon and the text */
}

/* Styling for the dropdown topic/header */
.dropdown-header {
  padding: 12px 16px;
  font-weight: bold;
  font-size: 14px;
  color: chocolate;
  border-bottom: 1px solid #ddd;
  text-transform: uppercase;
}


/* Show the dropdown menu on hover (desktop) */
.nav-item:hover .dropdown-menu {
  display: block;
}

/* Show the dropdown menu when active (mobile click) */
.nav-item.active .dropdown-menu {
  display: block;
}

/* Styling for the caret icon */
.fa-caret-down {
  margin-left: 8px;
  font-size: 14px;
}

/* --- Hamburger Menu (Mobile) --- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.hamburger .bar {
    width: 100%;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease-in-out;
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* --- Mobile Responsiveness --- */

@media (max-width: 1023px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
   
     height: 100vh;
    background-color: white; /* or your chosen color */
    z-index: 999;
    padding-top: 60px; /* Space for a header */
  }
 

  /* Show the menu when the 'active' class is present */
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: blue;
    backdrop-filter: blur(10px);
    align-items: center;
    /* REMOVE THIS LINE: */
     align-items: flex-start; 
    gap: 30px;
    z-index: 999;
    padding: 80px 20px 20px;
    overflow-y: auto;
  }
  .nav-links a {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: darkblue;
  font-weight: bold;
}
  .top-nav.hidden-mobile {
    display: none;
  }
  .dropdown-menu {
    display: none;              /* hidden by default */
    position: static;           /* no absolute positioning */
    box-shadow: none;
    background-color: transparent;
    padding-left: 15px;         /* indentation for sub-items */
  }

  /* Show dropdown when active (after JS toggle) */
  .nav-item.active .dropdown-menu {
    display: block;
  }

  /* Style dropdown links */
  .dropdown-menu li a {
    color: #333;
    padding: 10px 15px;
    font-size: 0.95rem;
  }
  
  
}


/* Tablet specific adjustments */
@media (min-width: 768px) and (max-width: 1023px) {
    .nav-links.active .nav-item a {
        font-size: 1.1rem;
        padding: 12px 20px;
    }

    .nav-links.active {
        gap: 25px;
        padding: 100px 40px 40px;
    }
}

/* Mobile specific adjustments */
@media (max-width: 767px) {
    .top-nav {
        padding: 8px 20px;
    }

    .navbar {
        padding: 12px 20px;
    }

    .nav-links.active {
        gap: 20px;
        padding: 80px 20px 20px;
    }

    .nav-links.active .nav-item a {
        font-size: 1rem;
        padding: 12px 15px;
    }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 992px) {
    .navbar {
        padding: 15px 20px;
    }

    .nav-links,
    .nav-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: #fff;
        align-items: center;
        gap: 20px;
        padding-top: 20px;
        z-index: 999;
    }

    .nav-right.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: calc(60px + 200px);
        left: 0;
        width: 100%;
        align-items: center;
        gap: 20px;
        z-index: 999;
    }

    .dropdown-menu {
        position: static;
        box-shadow: none;
        background-color: #f9f9f9;
        padding: 0 10px;
        margin-top: 5px;
    }
}
/* pop up */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-out;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease-out;
}

.modal.closing .modal-content {
    animation: slideOut 0.3s ease-out;
}

@keyframes slideIn {
    from { 
        transform: translateY(-50px);
        opacity: 0;
    }
    to { 
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from { 
        transform: translateY(0);
        opacity: 1;
    }
    to { 
        transform: translateY(-50px);
        opacity: 0;
    }
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.close-btn:hover {
    color: #333;
}

.modal-title {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.3;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.required {
    color: #e74c3c;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF8C00;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.field-label {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background: #FF8C00;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #FF6B35;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Modal Responsive Design */
@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        margin: 20px;
        width: calc(100% - 40px);
    }
    
    .modal-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 25px 15px;
        margin: 10px;
        width: calc(100% - 20px);
    }
    
    .modal-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 14px;
    }
    
    .submit-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Hero Section */
.hero-section {
            position: relative;
            width: 100%;
            height: 100vh; /* Full viewport height */
            display: flex;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            overflow: hidden; /* Ensures no content spills out */
        }

        /* The background image */
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('../images/hero-image.png'); /* The user's uploaded image */
            background-size: cover;
            background-position: center;
            z-index: -2; /* Puts the image behind the overlay and content */
        }

        /* Dark overlay for better text readability */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(2, 0, 10, 0.6); /* Adjust opacity here (0.7 is 70% opacity) */
            z-index: -1; /* Placed between the image and the content */
        }

        /* The main content container */
        .hero-content {
            z-index: 1; /* Ensures the text is on top */
            padding: 2rem;
            max-width: 800px;
        }

        /* Text styles */
        .hero-content h3 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .hero-content h5 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .hero-content p {
            font-size: 1.25rem;
            line-height: 1.6;
        }

        /* Button container styles */
        .hero-buttons {
            margin-top: 2rem;
            display: flex;
            justify-content: center;
            gap: 1rem; /* Space between buttons */
        }

        .hero-buttons .btn {
            padding: 0.45rem 1rem;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .hero-buttons .btn-primary {
            background-color: rgb(51, 243, 115); /* Blue color for primary button */
            color: white;
            border: 2px solid rgb(51, 243, 115);
            border-radius: 50px;
        }

        .hero-buttons .btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }

        /* Button hover effects */
        .hero-buttons .btn-primary:hover {
            background-color: #01162c;
            border-color: #001429;
            transform: translateY(-2px);
        }

        .hero-buttons .btn-secondary:hover {
            background-color: white;
            color: #000;
            transform: translateY(-2px);
        }

        /* Responsive design for tablets and smaller screens */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-buttons .btn {
                width: 80%;
                margin-bottom: 0.5rem;
            }
        }

        /* Responsive design for mobile phones */
        @media (max-width: 480px) {
            .hero-content {
                padding: 1rem;
            }
            
            .hero-content h1 {
                font-size: 1.5rem;
            }
            
            .hero-content p {
                font-size: 0.9rem;
            }
        }

/*about section*/
.about-container {
    display: flex;
    min-height: 80vh;
    max-width: 1400px;
    margin: 0 auto;
    
}

.image-section {
    flex: 1;
    max-height: 600px;
    position: relative;
    overflow: hidden;
    padding: 30px;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-top-left-radius: 100px;

}

.content-section {
    margin-top: -20px;
    flex: 1;
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 80px 60px;
}

.content-wrapper {
    max-width: 600px;
    width: 100%;
}

.section-title {
    color: darkblue;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.main-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.title-black {
    color: #333;
}

.title-blue {
    color: chocolate;
}

.description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.description p {
    margin-bottom: 20px;
}

.highlight-text {
    color: #2196F3;
    font-weight: 600;
}

.cta-button {
    background: linear-gradient(135deg, rgb(206, 114, 49), chocolate);
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.3);
}

/* Rotating Logo Styles */
.rotating-logo-container {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 120px;
    height: 120px;
}

.rotating-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: rotate 10s linear infinite;
}

.circle-border {
    width: 100%;
    height: 100%;
    border: 3px solid #2196F3;
    border-radius: 50%;
    border-top: 3px solid blue;
    border-right: 3px solid #2196F3;
    border-bottom: 3px solid blue;
    border-left: 3px solid #2196F3;
    position: relative;
}

.circle-border::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 2px solid rgba(33, 150, 243, 0.3);
    border-radius: 50%;
}

.static-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.logo-content {
    text-align: center;
    width: 100%;
}

.logo-text-top,
.logo-text-bottom {
    font-size: 8px;
    font-weight: 700;
    color: chocolate;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo-text-top {
    margin-bottom: 5px;
}

.logo-text-bottom {
    margin-top: 5px;
}

.logo-center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
}

.logo-icon {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #4CAF50, #2196F3);
    border-radius: 50%;
    position: relative;
}

.logo-icon::before {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
    font-weight: bold;
}

/* Animation */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-container {
        flex-direction: column;
    }
    
    .image-section {
        height: 50vh;
        min-height: 400px;
        position: relative;
    }
    
    .content-section {
        padding: 60px 40px;
    }
    
    .main-title {
        font-size: 36px;
    }
    
    .rotating-logo-container {
        width: 100px;
        height: 100px;
        bottom: 30px;
        right: 30px;
        position: absolute;
        z-index: 10;
    }
    
    .static-logo {
        width: 70px;
        height: 70px;
    }
    
    .logo-icon {
        width: 25px;
        height: 25px;
    }
    
    .logo-text-top,
    .logo-text-bottom {
        font-size: 7px;
    }
}

@media (max-width: 768px) {
    .image-section {
        height: 40vh;
        min-height: 300px;
        position: relative;
    }
    
    .content-section {
        padding: 40px 30px;
    }
    
    .main-title {
        font-size: 32px;
    }
    
    .description {
        font-size: 15px;
    }
    
    .rotating-logo-container {
        width: 80px;
        height: 80px;
        bottom: 20px;
        right: 20px;
        position: absolute;
        z-index: 10;
    }
    
    .static-logo {
        width: 55px;
        height: 55px;
    }
    
    .logo-icon {
        width: 20px;
        height: 20px;
    }
    
    .logo-icon::before {
        font-size: 12px;
    }
    
    .logo-text-top,
    .logo-text-bottom {
        font-size: 6px;
    }
}

@media (max-width: 480px) {
    .image-section {
        height: 35vh;
        min-height: 250px;
        position: relative;
    }
    
    .content-section {
        padding: 30px 20px;
    }
    
    .main-title {
        font-size: 28px;
    }
    
    .cta-button {
        padding: 12px 28px;
        font-size: 14px;
    }
    
    .rotating-logo-container {
        position: absolute;
        bottom: 15px;
        right: 15px;
        width: 70px;
        height: 70px;
        z-index: 10;
    }
    
    .static-logo {
        width: 50px;
        height: 50px;
    }
    
    .logo-icon {
        width: 18px;
        height: 18px;
    }
    
    .logo-icon::before {
        font-size: 10px;
    }
    
    .logo-text-top,
    .logo-text-bottom {
        font-size: 5px;
    }
}
/* Services Section Styles */
.services-section {
    padding: 80px 0;
    margin-top:-10;
    background-color: rgb(48, 47, 47);
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0 40px;
}

.service-box {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: none;
    border-radius: 30px;
}

/* Border System using pseudo-elements */
/* Top border - using service-box::before */
.service-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 3px;
    background: #FF8C00;
    transition: all 0.4s ease;
}

/* Right border - using service-box::after */
.service-box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 50%;
    background: #FF8C00;
    transition: all 0.4s ease;
}

/* Bottom border - using border-helper::before */
.service-box .border-helper::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 3px;
    background: #FF8C00;
    transition: all 0.4s ease;
}

/* Left border - using border-helper::after */
.service-box .border-helper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3px;
    height: 50%;
    background: #FF8C00;
    transition: all 0.4s ease;
}

/* Hover effects - show the remaining 50% of each border */
.service-box:hover::before {
    left: 50%;
    width: 50%;
}

.service-box:hover::after {
    top: 50%;
    height: 50%;
}

.service-box:hover .border-helper::before {
    left: 0;
    width: 50%;
}

.service-box:hover .border-helper::after {
    top: 0;
    height: 50%;
}

/* Box hover effects */
.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.15);
}

.service-icon {
    color: #FF8C00;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.service-box:hover .service-icon {
    color: #FF6B35;
    transform: scale(1.1);
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.service-box:hover .service-title {
    color: #FF6B35;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    transition: color 0.3s ease;
}

.service-box:hover .service-description {
    color: #555;
}

/* Border helper positioning */
.border-helper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Responsive Design for Services */
@media (max-width: 1024px) {
    .services-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        padding: 0 30px;
    }
    
    .service-box {
        padding: 35px 25px;
    }
    
    .service-title {
        font-size: 22px;
    }
    
    .service-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
    
    .service-box {
        padding: 30px 20px;
    }
    
    .service-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-description {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 0;
    }
    
    .services-container {
        padding: 0 15px;
        gap: 20px;
    }
    
    .service-box {
        padding: 25px 15px;
    }
    
    .service-icon svg {
        width: 45px;
        height: 45px;
    }
    
    .service-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .service-description {
        font-size: 13px;
    }
}

/*service Header */
#services {
    position: relative;
    background: url("../images/hero-image.png") no-repeat center center/cover;
    color: #fff; /* text stays visible */
    padding: 60px 20px;
}

/* Dark overlay */
#services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(1, 22, 44, 0.8); /* dark overlay with 80% opacity */
    z-index: 1;
}

/* Keep content above overlay */
#services * {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color:chocolate;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
} 
.services-icon{
    background-color: white;
}
 .icon-tax {
    color: chocolate; /* green */
    font-size: 30px; /* optional: resize */
  }
/* About Section */
.about {
    padding: 100px 0;
    background-color: rgb(215, 229, 248);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
}

.services-3s {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.s-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.s-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.s-item h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.s-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    background: rgba(252, 251, 251, 0.1); /* darkblue with 85% opacity */
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
    color: #fff; /* make text visible */
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
    background-color: rgba(34, 23, 23, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card li {
    color: white;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.tips-section {
            max-width: 1200px;
            margin: 0 auto;
        }

        .tips-section h1 {
    font-size: 2.5rem;
    color: chocolate;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.tips-section h1::after {
    content: "";
    display: block;
    width: 60px;              /* length of the line */
    height: 3px;              /* thickness */
    background:chocolate;    /* color */
    margin: 8px auto 0;       /* center below text */
}


        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            justify-content: center;
        }

        .tip-container {
            position: relative;
            background-color: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(252, 251, 251, 0.08);
            overflow: hidden;
            transition: transform 0.3s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .tip-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 4px solid transparent;
            border-radius: 10px;
            background: linear-gradient(90deg, white, rgb(1, 1, 63)) border-box;
            background-size: 300%;
            mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            mask-composite: exclude;
            z-index: 1;
        }
        
        .tip-container:hover::before {
            animation: border-flow 1s linear forwards;
        }
        
        .tip-container:not(:hover)::before {
            animation: reverse-border-flow 1s linear forwards;
        }

        .tip-content {
            position: relative;
            z-index: 2;
        }

        .tip-container h3 {
            font-size: 1.5rem;
            color: #333;
            margin-top: 0;
            margin-bottom: 1rem;
        }

        .tip-container p {
            font-size: 1rem;
            color: #666;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .tip-icon {
            font-size: 3rem;
            color: #1e90ff;
            margin-bottom: 1.5rem;
        }
        
        .tip-container:hover {
            transform: translateY(-5px);
        }

        @keyframes border-flow {
            from {
                background-position: 0% 50%;
            }
            to {
                background-position: 100% 50%;
            }
        }
        
        @keyframes reverse-border-flow {
            from {
                background-position: 100% 50%;
            }
            to {
                background-position: 0% 50%;
            }
        }
   
/* Financial Tips Section */
.financial-tips {
    padding: 100px 0;
    background: var(--primary-color);
}

.tips-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tips-text h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.tips-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: var(--border-radius);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.tip-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.tip-number {
    width: 50px;
    height: 50px;
    background: chocolate;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}


.tips-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.contact .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact .section-header h2 {
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.contact .section-header h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: chocolate;
    margin: 10px auto 0;
}

.contact .section-header p {
    font-size: 1rem;
    color: #555;
}

/* Flex container for map + form */
.contact-content {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* Google Map Styling */
.contact-map {
    flex: 0 0 50%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: 0;
}

/* Contact Form Styling */
.contact-form {
    flex: 0 0 50%;
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: chocolate;
    box-shadow: 0 0 5px rgba(210,105,30,0.5);
    outline: none;
}

.contact-form button {
    padding: 12px 25px;
    background: chocolate;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #a0522d;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-content {
        flex-direction: column;
    }

    .contact-map,
    .contact-form {
        flex: 100%;
    }

    .contact-map iframe {
        min-height: 300px;
    }
}


/* Footer Styles */
.footer {
  background-color: rgb(4, 4, 12);
  position: relative;
  overflow: hidden;
}

/* Dotted Background Pattern */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgb(36, 35, 35) 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px;
  animation: float 20s ease-in-out infinite;
  z-index: 0;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(10px, -10px); }
  66% { transform: translate(-5px, 5px); }
}

.footer-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
}

/* Left Section */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.logo-section {
  margin-bottom: 2rem;
}



.footer-logo {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

/* .footer-logo::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-color: var(--accent-color);
  border-radius: 2px;
  margin-left: 8px;
  transform: rotate(45deg);
} */

.tagline {
  color: chocolate;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.25rem;
}

.company-subtitle {
  color: white;
  font-size: 0.9rem;
}

.footer-cta .footer-cta {
  max-width: 400px;
}

.footer-cta .cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.footer-cta .cta-subtitle {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 2rem;
  font-weight: 400;
}

.highlight {
  color: chocolate;
  font-weight: 600;
}

.footer-cta .cta-button {
  background-color: transparent;
  color: white;
  border: 2px solid chocolate;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.footer-cta .cta-button:hover {
  background-color: chocolate;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Right Section - Four Columns */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-column {
  min-height: 200px;
}

.column-title {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 0.25rem 0;
}

.footer-links a:hover {
  color: white;
  transform: translateX(5px);
}

/* Location Info */
.location-info {
  color: white;
}

.address {
  margin-bottom: 1.5rem;
}

.address p:first-child,
.contact-info p:first-of-type,
.contact-info p:nth-of-type(3) {
  color: white;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-info p {
  margin-bottom: 1rem;
}

/* Social Links */
.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  padding-left: 0.5rem;
}

.social-link:hover {
  color: white;
  border-left-color: var(--primary-color);
  transform: translateX(5px);
}

.social-icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

/* Footer Bottom - Copyright */
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border-color);
  padding: 2rem;
}

.copyright-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: white;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-legal a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

.separator {
  color: var(--border-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer-content {
    padding: 3rem 1rem 1rem;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-cta .cta-title {
    font-size: 1.5rem;
  }
  
  .footer-cta .cta-button {
    width: 100%;
    text-align: center;
  }
  
  .copyright-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  
  .footer-logo {
    font-size: 2rem;
  }
  
  .footer-cta .cta-title {
    font-size: 1.25rem;
  }
  
  .footer-cta .cta-subtitle {
    font-size: 1rem;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 16px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding-bottom: 10px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .usp-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-image img {
        transform: none;
    }

    .about-content,
    .tips-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 16px;
    }

    .btn {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .usp-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .usp-item span {
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .tips-text h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}
.slider-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: translateY(0);
    z-index: 2;
}

.slide.prev {
    transform: translateY(-100%);
    opacity: 0;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.2);
}

.slide-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 21, 38, 0.8) 0%, rgba(25, 47, 79, 0.6) 100%);
}

.slide-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.slide-card {
    width: 300px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-right: 80px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.6s ease 0.3s;
}

.slide.active .slide-card {
    transform: translateY(0);
    opacity: 1;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-main {
    flex: 1;
    color: white;
    max-width: 600px;
}

.slide-header {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #ff6b47;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.2s;
}

.slide.active .slide-header {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease 0.4s;
}

.slide.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

.slide-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #ff6b47;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    transition: all 0.6s ease 0.6s;
}

.slide.active .slide-arrow {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.slide-top-header {
    position: absolute;
    top: 60px;
    left: 20%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
    transition: all 0.6s ease 0.2s;
}

.slide.active .slide-top-header {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.slide-top-header h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 300;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slide-arrow:hover {
    background: #e55a3f;
    transform: translateY(0) scale(1.1);
}

.navigation {
    position: absolute;
    bottom: 40px;
    left: 60px;
    right: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.slide-counter {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 300;
}

.current-slide {
    color: white;
    font-weight: 500;
}

.divider {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.5);
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.progress-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #ff6b47;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

/* Animated Progress Line */
.progress-line-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.progress-line {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff6b47, #ff8a6b);
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(255, 107, 71, 0.5);
}

.progress-line.animating {
    animation: progressFlow 4s linear forwards;
}

@keyframes progressFlow {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-content {
        padding: 0 40px;
        flex-direction: column;
        text-align: center;
    }

    .slide-card {
        margin-right: 0;
        margin-bottom: 40px;
        width: 250px;
        height: 160px;
    }

    .slide-title {
        font-size: 2.5rem;
    }

    .navigation {
        left: 40px;
        right: 40px;
        bottom: 30px;
    }
}

@media (max-width: 768px) {
    .slide-content {
        padding: 0 20px;
    }

    .slide-card {
        width: 200px;
        height: 130px;
    }

    .slide-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .slide-top-header h2 {
        font-size: 1.8rem;
    }

    .slide-top-header {
        top: 40px;
    }

    .slide-header {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .navigation {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
    }

    .slide-arrow {
        width: 50px;
        height: 50px;
    }
}

/* Animation keyframes */
@keyframes slideInFromBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideOutToTop {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

/* Red accent line decoration */
.slide-main::before {
    content: '';
    position: absolute;
    left: -80px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60px;
    background: #ff6b47;
    border-radius: 2px;
    opacity: 0;
    transition: all 0.6s ease 0.8s;
}

.slide.active .slide-main::before {
    opacity: 1;
}

@media (max-width: 1024px) {
    .slide-main::before {
        display: none;
    }
}

/* ==========================================================================
   COMPREHENSIVE MEDIA QUERIES FOR RESPONSIVE DESIGN
   ========================================================================== */

/* Extra Large Screens (1440px and up) */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-content p {
        font-size: 1.4rem;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .service-card {
        padding: 50px 40px;
    }

    .about-section {
        padding: 80px;
        gap: 60px;
    }
}

/* Large Screens (1200px to 1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
    .container {
        max-width: 1200px;
    }

    .navbar {
        padding: 15px 40px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
}

/* Desktop Screens (1024px to 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .container {
        max-width: 1000px;
        padding: 0 30px;
    }

    .top-nav {
        padding: 8px 30px;
    }

    .navbar {
        padding: 12px 30px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .about-section {
        padding: 40px;
        gap: 30px;
    }

    .about-left img {
        max-width: 350px;
        height: 350px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-content {
        gap: 30px;
    }

    .slide-content {
        padding: 0 30px;
    }

    .slide-title {
        font-size: 3rem;
    }
}

/* Tablet Landscape (768px to 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .container {
        max-width: 750px;
        padding: 0 25px;
    }

    /* Navigation */
    .top-nav {
        padding: 8px 25px;
        flex-wrap: wrap;
        gap: 15px;
    }

    .contact-info {
        gap: 20px;
    }

    .contact-info .phone,
    .contact-info .email {
        font-size: 13px;
    }

    .social-links {
        gap: 10px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .navbar {
        padding: 12px 25px;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 2.3rem;
        margin-bottom: 0.8rem;
    }

    .hero-content h5 {
        font-size: 1.1rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        margin-top: 1.5rem;
        gap: 0.8rem;
    }

    .hero-buttons .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }

    /* About Section */
    .about-section {
        flex-direction: column;
        padding: 40px 25px;
        gap: 30px;
        text-align: center;
    }

    .about-left {
        flex: none;
    }

    .about-left img {
        width: 100%;
        max-width: 400px;
        height: 300px;
    }

    .about-cards {
        flex-direction: row;
        gap: 15px;
    }

    .card {
        padding: 15px;
    }

    /* Services Section */
    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    /* Tips Section */
    .tips-section h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .tip-container {
        padding: 2rem;
    }

    .tip-container h3 {
        font-size: 1.3rem;
    }

    .tip-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    /* Financial Tips */
    .financial-tips {
        padding: 60px 0;
    }

    .tips-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .tips-text h2 {
        font-size: 2.2rem;
        margin-bottom: 30px;
    }

    .tips-list {
        max-width: 600px;
        margin: 0 auto;
    }

    .tip-item {
        padding: 15px;
        font-size: 1rem;
    }

    .tip-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    /* Contact Section */
    .contact {
        padding: 60px 20px;
    }

    .contact-content {
        flex-direction: column;
        gap: 30px;
    }

    .contact-map,
    .contact-form {
        flex: 100%;
    }

    .contact-form {
        padding: 30px 25px;
    }

    /* Footer */
    .footer {
        padding: 40px 0 15px;
    }

    .footer-content {
        gap: 30px;
    }

    /* Slider */
    .slide-content {
        flex-direction: column;
        text-align: center;
        padding: 0 25px;
    }

    .slide-card {
        margin-right: 0;
        margin-bottom: 30px;
        width: 280px;
        height: 180px;
    }

    .slide-title {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .slide-top-header h2 {
        font-size: 2rem;
    }

    .navigation {
        left: 25px;
        right: 25px;
    }
}

/* Tablet Portrait (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 20px;
    }

    /* Navigation */
    .top-nav {
        flex-direction: column;
        padding: 10px 20px;
        gap: 10px;
    }

    .contact-info {
        justify-content: center;
        gap: 25px;
    }

    .social-links {
        justify-content: center;
    }

    .navbar {
        padding: 10px 20px;
    }

    .nav-links,
    .nav-right {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* Hero Section */
    .hero-content {
        padding: 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .hero-content h5 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        margin-top: 1.5rem;
    }

    .hero-buttons .btn {
        width: 90%;
        max-width: 300px;
        padding: 0.7rem 1rem;
        margin-bottom: 0.5rem;
    }

    /* About Section */
    .about-section {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }

    .about-left img {
        width: 100%;
        max-width: 350px;
        height: 280px;
    }

    .about-right h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .about-cards {
        flex-direction: column;
        gap: 15px;
    }

    .card {
        padding: 18px;
    }

    /* Services Section */
    .services {
        padding: 50px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .section-header p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 18px;
        margin-bottom: 20px;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    /* Tips Section */
    .tips-section {
        padding: 50px 20px;
    }

    .tips-section h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .tips-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tip-container {
        padding: 1.8rem;
    }

    .tip-container h3 {
        font-size: 1.2rem;
    }

    .tip-icon {
        font-size: 2.2rem;
    }

    /* Financial Tips */
    .financial-tips {
        padding: 50px 0;
    }

    .tips-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }

    .tips-text h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .tip-item {
        padding: 12px;
        font-size: 0.95rem;
    }

    .tip-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Contact Section */
    .contact {
        padding: 50px 15px;
    }

    .contact .section-header h2 {
        font-size: 2rem;
    }

    .contact-form {
        padding: 25px 20px;
    }

    .contact-map iframe {
        min-height: 250px;
    }

    /* Footer */
    .footer {
        padding: 35px 0 15px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* Slider */
    .slide-content {
        padding: 0 20px;
        flex-direction: column;
    }

    .slide-card {
        width: 250px;
        height: 160px;
        margin-bottom: 25px;
    }

    .slide-title {
        font-size: 2rem;
        margin-bottom: 25px;
    }

    .slide-top-header {
        top: 30px;
    }

    .slide-top-header h2 {
        font-size: 1.8rem;
    }

    .navigation {
        left: 20px;
        right: 20px;
        bottom: 25px;
    }

    .nav-btn {
        width: 45px;
        height: 45px;
    }
}

/* Mobile Landscape (481px to 575px) */
@media (min-width: 481px) and (max-width: 575px) {
    .container {
        padding: 0 18px;
    }

    /* Navigation */
    .top-nav {
        flex-direction: column;
        padding: 8px 18px;
        gap: 8px;
    }

    .contact-info {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .contact-info .phone,
    .contact-info .email {
        font-size: 12px;
    }

    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .navbar {
        padding: 8px 18px;
    }

    /* Hero Section */
    .hero-content {
        padding: 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }

    .hero-content h5 {
        font-size: 0.95rem;
    }

    .hero-content p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .hero-buttons .btn {
        width: 95%;
        padding: 0.65rem 0.8rem;
        font-size: 0.9rem;
    }

    /* About Section */
    .about-section {
        padding: 25px 18px;
    }

    .about-left img {
        max-width: 320px;
        height: 250px;
    }

    .about-right h2 {
        font-size: 1.6rem;
    }

    .about-right p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    /* Services Section */
    .services {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 20px 15px;
    }

    .service-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-card li {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    /* Tips Section */
    .tips-section {
        padding: 40px 18px;
    }

    .tips-section h1 {
        font-size: 1.8rem;
    }

    .tip-container {
        padding: 1.5rem;
    }

    .tip-container h3 {
        font-size: 1.1rem;
    }

    .tip-container p {
        font-size: 0.9rem;
    }

    .tip-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    /* Financial Tips */
    .financial-tips {
        padding: 40px 0;
    }

    .tips-text h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .tip-item {
        padding: 10px;
        font-size: 0.9rem;
    }

    .tip-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    /* Contact Section */
    .contact {
        padding: 40px 15px;
    }

    .contact-form {
        padding: 20px 15px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .contact-form button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Footer */
    .footer {
        padding: 30px 0 12px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    /* Slider */
    .slide-content {
        padding: 0 18px;
    }

    .slide-card {
        width: 220px;
        height: 140px;
    }

    .slide-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .slide-header {
        font-size: 11px;
    }

    .slide-top-header h2 {
        font-size: 1.6rem;
    }

    .slide-arrow {
        width: 45px;
        height: 45px;
    }
}

/* Mobile Portrait (320px to 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* Navigation */
    .top-nav {
        flex-direction: column;
        padding: 6px 15px;
        gap: 6px;
    }

    .contact-info {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }

    .contact-info .phone,
    .contact-info .email {
        font-size: 11px;
    }

    .social-links span {
        font-size: 12px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .navbar {
        padding: 8px 15px;
    }

    .header-logo {
        font-size: 1.2rem;
    }

    /* Hero Section */
    .hero-content {
        padding: 0.8rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }

    .hero-content h5 {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }

    .hero-content p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 0.8rem;
    }

    .hero-buttons {
        margin-top: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        padding: 0.6rem 0.7rem;
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
    }

    /* About Section */
    .about-section {
        padding: 20px 15px;
    }

    .about-left img {
        max-width: 280px;
        height: 220px;
    }

    .about-right h2 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .about-right p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 18px;
    }

    .card {
        padding: 15px 12px;
    }

    .card h3 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .card p {
        font-size: 0.85rem;
    }

    /* Services Section */
    .services {
        padding: 35px 0;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .section-header h2 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .service-card {
        padding: 18px 12px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 16px;
        margin-bottom: 12px;
    }

    .service-card h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .service-card li {
        font-size: 0.85rem;
        margin-bottom: 6px;
        padding-left: 18px;
    }

    /* Tips Section */
    .tips-section {
        padding: 35px 15px;
    }

    .tips-section h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .tips-grid {
        gap: 1.2rem;
    }

    .tip-container {
        padding: 1.2rem;
    }

    .tip-container h3 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }

    .tip-container p {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }

    .tip-icon {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    /* Financial Tips */
    .financial-tips {
        padding: 35px 0;
    }

    .tips-content {
        padding: 0 15px;
        gap: 25px;
    }

    .tips-text h2 {
        font-size: 1.6rem;
        margin-bottom: 18px;
    }

    .tip-item {
        padding: 8px;
        font-size: 0.85rem;
        gap: 15px;
    }

    .tip-number {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .tips-image img {
        max-height: 250px;
    }

    /* Contact Section */
    .contact {
        padding: 35px 10px;
    }

    .contact .section-header h2 {
        font-size: 1.6rem;
    }

    .contact-form {
        padding: 18px 12px;
    }

    .contact-form .form-group {
        margin-bottom: 15px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 8px 10px;
        font-size: 0.85rem;
    }

    .contact-form button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .contact-map iframe {
        min-height: 200px;
    }

    /* Footer */
    .footer {
        padding: 25px 0 10px;
    }

    .footer-content {
        gap: 18px;
        text-align: center;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .footer-section ul li {
        margin-bottom: 8px;
    }

    .footer-section ul li a {
        font-size: 0.9rem;
    }

    .footer-contact p {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .footer-bottom {
        padding-top: 15px;
        font-size: 0.8rem;
    }

    /* Slider */
    .slide-content {
        padding: 0 15px;
        flex-direction: column;
        align-items: center;
    }

    .slide-card {
        width: 200px;
        height: 120px;
        margin-bottom: 15px;
    }

    .slide-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .slide-header {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .slide-top-header {
        top: 25px;
        left: 50%;
    }

    .slide-top-header h2 {
        font-size: 1.4rem;
    }

    .slide-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .navigation {
        left: 15px;
        right: 15px;
        bottom: 15px;
    }

    .nav-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .slide-counter {
        font-size: 14px;
    }

    .progress-indicators {
        gap: 8px;
    }

    .indicator {
        width: 6px;
        height: 6px;
    }
    .logo-text-top,
    .logo-text-bottom {
        display: none;
    }
}

/* Extra Small Screens (below 320px) */
@media (max-width: 319px) {
    .container {
        padding: 0 10px;
    }
    .main-image{
        border-top-left-radius: 30px;
    }
    .logo-text-top,
    .logo-text-bottom {
        font-size: 1px;
    }


    .hero-content h1 {
        font-size: 1.3rem;
    }

    .hero-content p {
        font-size: 0.8rem;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .about-right h2 {
        font-size: 1.2rem;
    }

    .service-card h3 {
        font-size: 0.95rem;
    }

    .tips-section h1 {
        font-size: 1.4rem;
    }

    .tips-text h2 {
        font-size: 1.4rem;
    }

    .slide-title {
        font-size: 1.3rem;
    }

    .slide-top-header h2 {
        font-size: 1.2rem;
    }
}

/* Print Styles */
@media print {
    * {
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
    }

    .top-nav,
    .hamburger,
    .hero-buttons,
    .slide-arrow,
    .navigation,
    .nav-buttons,
    .progress-indicators {
        display: none !important;
    }

    .hero-section {
        height: auto;
        padding: 40px 0;
    }

    .section-header h2,
    .about-right h2,
    .tips-text h2 {
        color: #000 !important;
    }

    .service-card,
    .tip-container {
        break-inside: avoid;
        margin-bottom: 20px;
    }

    .footer {
        margin-top: 40px;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #000000;
        --text-secondary: #333333;
        --bg-light: #ffffff;
        --primary-color: #000000;
        --secondary-color: #ffdd00;
    }

    .service-card,
    .tip-container {
        border: 2px solid #000;
    }

    .hero-buttons .btn {
        border-width: 3px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .slide {
        transition: none;
    }

    .progress-line.animating {
        animation: none;
    }
}

/* Floating Buttons Container */
    .floating-buttons {
      position: fixed;
      bottom: 20px;
      right: 20px;
      display: flex;
      flex-direction: column;
      gap: 15px;
      z-index: 999;
    }

    /* Common Button Style */
    .float-btn {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 28px;
      color: white;
      position: relative;
      animation: ring 2s infinite;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      transition: transform 0.3s;
    }

    .float-btn:hover {
      transform: scale(1.1);
    }

    /* WhatsApp Button */
    .whatsapp-btn {
      background-color: #25D366;
    }

    /* Top Arrow Button */
    .top-btn {
      background-color: chocolate;
    }

    /* Alarm Ring Animation */
    @keyframes ring {
      0% { box-shadow: 0 0 0 0 rgba(0,0,0,0.2); }
      70% { box-shadow: 0 0 0 20px rgba(0,0,0,0); }
      100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
    }

