/* --- Google Font & Basic Setup --- */
:root {
    --primary-color:#D4AF37 ; /* Light Yellow/Gold - Accent */
    --secondary-color: #142850; /* Dark Navy Green - Background */
    --text-color: #D4AF37 ; /* Light Yellow/Gold - Main Text */
    --card-bg: #D4AF37; /* Slightly lighter gold for cards */
    --glow-color:#142850; /* Dark Navy Green for glow effect */
    --font-family: 'Poppins', sans-serif;
    --text-light: #FFFFFF; /* Added for clarity in About section */
}

.section-title {
    color: #1E1E1E; /* Use the light text color for titles on dark backgrounds */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--secondary-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #fff;
}

/* --- Header & Navigation (Desktop Default) --- */
header {
    background-color: var(--secondary-color);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Logo & Animation --- */
@keyframes slideInRight {
    0% { transform: translateX(100%); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes spin-in {
    0% { opacity: 0; transform: scale(0.5) rotate(-90deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary-color);
}

.logo-container img {
    height: 50px;
    flex-shrink: 0;
    animation: spin-in 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.company-name {
    margin: 0;
    font-size: 2.5em;
    font-weight: bold;
    white-space: nowrap;
    animation-name: slideInRight;
    animation-duration: 1.2s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards;
    opacity: 0;
    transform: translateX(100%);
}

/* --- Desktop Navigation Links --- */
.main-nav-wrapper {
    /* Desktop: Display as inline links */
    display: block;
}

.main-nav-list {
    list-style: none;
    display: flex;
    align-items: center;
}

.main-nav-list li {
    margin-left: 25px;
}

.main-nav-list li a {
    color: WHITE;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    font-weight: 600;
    font-size: 18px;
    position: relative;
}

.main-nav-list li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transform: translateX(-50%);
    transition: all 0.3s ease-in-out;
}

.main-nav-list li a:hover::after {
    width: 100%;
}

.main-nav-list li a:hover {
    color: var(--primary-color);
}

/* Desktop Header Button (Last li item in the new structure) */
.header-button {
    background-color: var(--primary-color);
    color: var(--secondary-color) !important; /* Force dark text for contrast */
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    /* Removed margin-left: 25px; because it's already in the li spacing */
}

.header-button:hover {
    background-color: white;
    text-decoration: none; /* No underline on button hover */
    color: var(--primary-color) !important;
}

/* --- Mobile Toggle Button (Hidden by default on Desktop) --- */
.menu-toggle {
    display: none; /* HIDE on desktop */
    background: none;
    border: none;
    font-size: 1.8em;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
    z-index: 1001; /* CRUCIAL: Must be on top of the open menu */
}

/* ---------------------------------------------------------------------------------- */
/* 📱 MOBILE MEDIA QUERY (Breakpoint: 992px) 📱 */
/* ---------------------------------------------------------------------------------- */
@media (max-width: 992px) {
    /* 1. Show the Toggle Button */
    .menu-toggle {
        display: block; /* SHOW on mobile */
    }

    /* 2. Hide the Menu Links by default */
    .main-nav-wrapper {
        display: none; /* HIDE the entire menu wrapper */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--secondary-color); /* Full screen overlay */
        padding-top: 80px; /* Push content down past the fixed header */
        z-index: 990; /* Below the header and toggle button */
        overflow-y: auto;
    }

    /* 3. The TOGGLE CLASS: Show the menu when 'is-open' is present */
    .main-nav-wrapper.is-open {
        display: block; /* SHOW when toggled by JavaScript */
    }

    /* 4. Make the links vertical and centered */
    .main-nav-list {
        flex-direction: column;
        text-align: center;
        width: 100%;
        padding: 0; /* Reset default list padding */
    }

    .main-nav-list li {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-nav-list li a {
        padding: 15px 20px;
        color: #FFFFFF;
    }

    /* Remove underline on hover for mobile links */
    .main-nav-list li a:hover::after {
        width: 0;
    }
    .main-nav-list li a:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #FFFFFF;
    }

    /* Button specific styles for mobile menu */
    .main-nav-list li:last-child {
        border-bottom: none;
        padding-top: 20px;
    }
    .main-nav-list li a.header-button {
        display: inline-block; /* Allows it to be centered */
        margin: 10px auto;
        color: var(--secondary-color) !important;
        /* Reset hover for the button */
        background-color: var(--primary-color);
    }
    .main-nav-list li a.header-button:hover {
         background-color: white;
    }
    
    /* Global fixes for smaller screens */
    .section-title, .animated-heading { font-size: 2rem; }
    .hero-content h1 { font-size: 2.5rem; }
    .form-group { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------------------------- */
/* --- Hero Section --- */
/* --- Animated Gradient Background --- */
.gradient-bg {
    background: linear-gradient(120deg, #e0f8e8, #e6e9ff, #fde2e4);
    background-size: 200% 200%;
    animation: gradient-animation 15s ease infinite;
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* --- Enhanced Ball Style & Interaction --- */
.ball {
    position: absolute;
    border-radius: 100%;
    opacity: 0.9;
    filter: blur(1px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
    animation: moveBall 20s infinite linear;
    z-index: 1;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out, filter 0.3s ease-out, box-shadow 0.3s ease-out;
}

@keyframes moveBall {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(calc(var(--vx) * 30vw), calc(var(--vy) * 30vh)) scale(1.1); }
    50% { transform: translate(calc(var(--vx) * -15vw), calc(var(--vy) * -20vh)) scale(0.9); }
    75% { transform: translate(calc(var(--vx) * 20vw), calc(var(--vy) * -35vh)) scale(1.2); }
}
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #F0F0F0;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.dynamic-text {
    color: var(--text-color);
    border-right: 3px solid var(--text-color);
    padding-right: 5px;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    from { border-color: transparent; }
    to { border-color: var(--text-color); }
}

.subtitle {
    font-size: 1.2rem;
    margin: 20px 0 30px;
    position: relative;
    z-index: 2;
}

/* Styling the Form Container */
.project-form {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}
/* Styling the Email Input Field */
.email-input {
    background-color: white;
    color: var(--secondary-color);
    padding: 12px 15px;
    border-radius: 5px;
    font-weight: bold;
    border: 1px solid #ddd;
    flex-grow: 1;
    min-width: 200px;
    transition: all 0.3s ease;
}
.email-input:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Button Styling */
.banner-button {
    display: inline-block;
    position: relative;
    z-index: 2;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

/* Hover Style */
#hero .banner-button:hover {
    background-color: white;
    text-decoration: underline;
    color: #1a233b;
}
.success-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 10px;
    max-width: 400px;
    margin: 20px auto;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    position: relative;
    z-index: 50;
}
/* NEW SMALLER WHATSAPP BUTTON STYLE */
.whatsapp-small-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #25d366;
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    position: relative;
    z-index: 50;
}

.whatsapp-small-button:hover {
    background-color: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-small-button i {
    font-size: 1.2em;
}

/* --- START: Interactive Services Section Styles --- */
#services.interactive-services-bg {
    background-color: var(--secondary-color);
    font-family: 'Inter', sans-serif;
}

#services .card {
    background-color: var(--card-bg);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    transform-style: preserve-3d;
}

#services .card:hover {
    transform: perspective(1000px) scale(1.02) rotateY(var(--rotateY)) rotateX(var(--rotateX));
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

#services .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--x) var(--y), var(--glow-color) 0%, transparent 40%);
    opacity: 0;
    z-index: 0;
    transition: opacity 0.4s ease-in-out;
    pointer-events: none;
}

#services .card:hover::before {
    opacity: 0.15;
}

#services .card-content {
    position: relative;
    z-index: 1;
    color: var(--secondary-color);
}

#services .card-content h3 {
    color: var(--secondary-color);
}

#services .link {
    text-decoration: none;
    position: relative;
    font-weight: 600;
    color: var(--secondary-color);
}

#services .link::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: currentColor;
    transform-origin: bottom right;
    transform: scaleX(0);
    transition: transform 0.3s ease-out;
}

#services .link:hover::before {
    transform-origin: bottom left;
    transform: scaleX(1);
}

.typing-cursor {
    display: inline-block;
    width: 8px;
    height: 1.2em;
    background-color: var(--glow-color);
    animation: blink-cursor 0.7s infinite;
    margin-left: 2px;
}

@keyframes blink-cursor {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.animated-heading {
    background-image: linear-gradient(
        -225deg,
        var(--primary-color) 0%,
        var(--text-color) 29%,
        var(--primary-color) 67%,
        #F0F0F0 100%
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: text-shine 5s linear infinite;
}

@keyframes text-shine {
    to {
        background-position: 200% center;
    }
}
/* --- END: Interactive Services Section Styles --- */


/* --- Portfolio Section --- */
#portfolio { background-color: var(--card-bg) ; }
#portfolio .section-title { color: var(--secondary-color); }

.portfolio-filter {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: none;
    border: 1px solid var(--secondary-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-color);
    color: #F0F0F0 ;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.portfolio-item img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(62, 66, 111, 0.8);
    color: #F0F0F0 ;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}
/* Custom Hover State: Use the Gold background for subtle hover */
.filter-btn:hover {
    background: var(--primary-color); /* Gold background */
    color: var(--secondary-color); /* Dark Blue text */
    border-color: var(--primary-color); /* Gold border */
}

/* Active State: Use the high-contrast Dark Blue fill to show selection */
.filter-btn.active {
    background: var(--secondary-color); /* Dark Blue background */
    color: #FFFFFF; /* White text */
    border-color: var(--secondary-color); /* Solid Dark Blue border */
}
/* --- About Section starts here --- */
#about-us {
    background-color: var(--secondary-color);
    padding: 80px 0;
    color: var(--text-light);
}

/* Reusing your standard container and section title styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.8em;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

/* Mission Statement Styling */
.mission-statement {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    line-height: 1.8;
}

.mission-statement .tagline {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.mission-statement .body-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #ccc;
}

/* Core Values Grid Styling */
.values-heading {
    text-align: center;
    font-size: 2em;
    color: var(--text-light);
    margin-bottom: 40px;
}

.values-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-top: 20px;
}

.value-card {
    background-color: #2b354f;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    flex: 1;
    border-top: 3px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.value-card h4 {
    color: var(--text-light);
    font-size: 1.4em;
    margin-top: 15px;
    margin-bottom: 10px;
}

.value-card p {
    color: #b0b8d2;
    font-size: 0.95em;
}

/* Icon Styling */
.icon-gold {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}
.cta-section {
    text-align: center;
    padding-top: 60px;
}

.cta-section p {
    font-size: 1.5em;
    color: #ccc;
    margin-bottom: 25px;
}

.primary-cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.primary-cta-button:hover {
    background-color: grey;
}
/* Responsive adjustment for mobile */
@media (max-width: 768px) {
    .values-grid {
        flex-direction: column;
    }
    .mission-statement .tagline {
        font-size: 1.4em;
    }
}

/* --- Contact Section --- */

#contact {
    background-color: var(--primary-color);
    padding: 80px 0;
}

#contact .section-title {
    color: var(--secondary-color);
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 50px;
}

/* --- 1. TWO-COLUMN GRID LAYOUT (SYNCED HEIGHT) --- */
.contact-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .contact-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* --- 2. LEFT COLUMN (Contact Details Card) --- */
.contact-details-left {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.contact-info-card {
    background-color: #2b354f;
    color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    flex-grow: 1;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.details-headline {
    margin-top: 0;
    margin-bottom: 25px;
    text-align: center;
    color: #f0f0f0;
    font-size: 1.2em;
}

.direct-info {
    text-align: left;
    font-size: 1.1em;
    padding-left: 10px;
}

.direct-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.direct-info strong {
    font-weight: 700;
    margin-right: 8px;
}

.direct-info a {
    color: #FFFFFF;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.direct-info a:hover {
    color: var(--secondary-color);
}

.availability-note {
    font-style: italic;
    margin-top: 25px;
    text-align: center;
    color: #f0f0f0;
}

.icon-dark {
    font-size: 1.5em;
    color: var(--secondary-color);
    margin-right: 15px;
    min-width: 30px;
    text-align: center;
}

/* --- 3. RIGHT COLUMN (Form Styling) --- */

.contact-form-right {
    height: 100%;
    padding-top: 5px;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
#contact-form {
    display: flex;
    flex-direction: column;
    height: 100%;
}
/* Input/Textarea/SELECT Base Styles */
#contact-form input,
#contact-form textarea,
.full-width-input,
.service-select {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background: #FFFFFF;
    color: var(--secondary-color);
    font-family: inherit;
    font-size: 1em;
}

/* Specific Dropdown Styling */
.service-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" width="292.4" height="292.4" viewBox="0 0 292.4 292.4"><path fill="%231a233b" d="M287 69.4L146.2 200.7 5.4 69.4c-4.4-4.4-11.6-4.4-16 0-4.4 4.4-4.4 11.6 0 16l150 150c4.4 4.4 11.6 4.4 16 0l150-150c4.4-4.4 4.4-11.6 0-16z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 10px;
    margin-bottom: 20px;
    cursor: pointer;
}

/* Placeholder Styling for Inputs and Select */
#contact-form input::placeholder,
#contact-form textarea::placeholder,
.service-select option[value=""][disabled] {
    color: #6c757d;
}

/* Style for the new standalone input field (Phone) */
.full-width-input {
    margin-bottom: 20px;
}

#contact-form textarea {
    resize: vertical;
}

/* Submit Button Styling (.submit-btn) */
.submit-btn {
    margin-top: auto;
    display: block;
    width: 100%;
    border: none;
    cursor: pointer;
    padding: 15px;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 5px;
    background-color: var(--secondary-color);
    color: #FFFFFF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: all 0.2s ease;
}

/* Button Hover State */
.submit-btn:hover {
    background-color: #2b354f;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.5);
}

/* --- Footer --- */
#main-footer {
    background-color: var(--secondary-color);
    color: #FFFFFF;
    padding-top: 50px;
    font-size: 0.95em;
}

/* Three-Column Grid */
.footer-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Column Headings */
#main-footer h4 {
    color: var(--primary-color);
    font-size: 1.2em;
    margin-bottom: 20px;
}

/* Brand Logo (Use Gold for emphasis) */
.logo-footer {
    color: var(--primary-color);
    font-weight: 800;
}

/* Link Styling */
#main-footer a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

#main-footer a:hover {
    color: var(--primary-color);
}

/* Quick Links List */
#main-footer ul {
    list-style: none;
    padding: 0;
}

#main-footer ul li {
    margin-bottom: 8px;
}

/* Contact Info & Social Icons */
.contact-info p, .brand-info p {
    margin-bottom: 10px;
}

/* Icons within text */
.contact-info .fas, .contact-info .fab {
    color: var(--primary-color);
    margin-right: 10px;
    min-width: 15px;
}

/* Social Icons */
.social-links a {
    font-size: 1.2em;
    margin-right: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Copyright Bar Styling */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 0.85em;
    color: var(--primary-color);
}

/* Mobile Responsiveness for Footer */
@media (max-width: 768px) {
    .footer-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-content-grid .footer-col {
        margin-bottom: 20px;
    }
}

/* --- Animations & Responsive --- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/*
    =====================================================
    ✅ FLOATING ICON STYLES (Retained High Z-Index)
    =====================================================
*/
.whatsapp-icon-link {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    font-size: 2.5em;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.whatsapp-icon-link:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.call-icon-link {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-size: 2.5em;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.call-icon-link:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    transform: scale(1.1);
}










CSS for the Rate Card (`style.css`)

Add this CSS block to your `style.css` file. It meticulously replicates the design, colors, responsiveness, and the "RECOMMENDED" badge from your image.

```css
/* --- NEW PRICING SECTION STYLES --- */
#pricing {
    background-color: #f8faff; /* Light background for the section */
    padding: 80px 0; /* Standard section padding */
}

#pricing .section-title {
    color: #333; /* Darker title for light background */
}

#pricing p.text-center {
    color: #666; /* Slightly darker text for light background */
}

.pricing-grid {
    display: grid;
    /* On larger screens, fit as many 300px min-width cards as possible */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; /* Space between cards */
    justify-content: center;
    align-items: stretch; /* Make cards stretch to equal height */
    max-width: 1200px; /* Max width for the grid to keep it contained */
    margin: 0 auto; /* Center the grid within its container */
}

.pricing-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08); /* Subtle shadow */
    display: flex;
    flex-direction: column; /* Stacks content vertically */
    text-align: center;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; /* Smooth hover effects */
    position: relative; /* Needed for the recommended badge positioning */
    overflow: hidden; /* Ensures badge clip-path works correctly */
}

.pricing-card:hover {
    transform: translateY(-8px); /* Lift card slightly on hover */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

/* Specific card styles for borders and header colors to match the image */
.pricing-card.silver {
    border: 1px solid #e0ffe0; /* Light green border */
}
.pricing-card.silver .package-tag { background-color: #e0ffe0; color: #4CAF50; } /* Green tag */
.pricing-card.silver .btn-primary { background-color: #4CAF50; } /* Green button */
.pricing-card.silver .btn-primary:hover { background-color: #45a049; }

.pricing-card.gold {
    border: 2px solid #D4AF37; /* Gold border - slightly thicker */
}
.pricing-card.gold .package-tag { background-color: #D4AF37; color: #fff; } /* Gold tag, white text */
.pricing-card.gold .price { color: #D4AF37; } /* Gold price color */
.pricing-card.gold .btn-primary { background-color: #D4AF37; color: #1a233b; } /* Gold button, dark text */
.pricing-card.gold .btn-primary:hover { background-color: #c09f30; }

.pricing-card.platinum {
    border: 1px solid #e0e0ff; /* Light blue border */
}
.pricing-card.platinum .package-tag { background-color: #e0e0ff; color: #64B5F6; } /* Light blue tag */
.pricing-card.platinum .btn-primary { background-color: #64B5F6; } /* Light blue button */
.pricing-card.platinum .btn-primary:hover { background-color: #42a5f5; }


.package-header {
    margin-bottom: 25px;
}

.package-tag {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 600;
    margin-bottom: 15px;
}

.pricing-card h3.price {
    font-size: 2.8em; /* Large price text */
    font-weight: 700;
    color: #333; /* Default price color (will be overridden for gold) */
    margin-bottom: 5px;
    display: flex;
    justify-content: center;
    align-items: flex-end; /* Aligns the "/per month" to the bottom of the price */
}

.pricing-card h3.price span.duration {
    font-size: 0.5em; /* Smaller "per month" text */
    font-weight: 400;
    color: #888;
    margin-left: 5px;
    white-space: nowrap; /* Prevents "/per month" from breaking */
}

.pricing-card .description {
    font-size: 0.9em;
    color: #777;
    min-height: 40px; /* Ensures consistent height for descriptions across cards */
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1; /* Pushes the button to the bottom if cards have different content heights */
}

.features-list li {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start; /* Aligns icon and text nicely */
    line-height: 1.4;
}

.features-list li:last-child {
    margin-bottom: 0; /* No bottom margin on the last item */
}

.check-icon {
    color: #4CAF50; /* Green checkmark */
    margin-right: 10px;
    font-size: 1.1em;
    min-width: 20px; /* Ensures icon has space and doesn't push text too far */
}

.btn-primary {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background-color: #007bff; /* Default blue for buttons (will be overridden) */
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: auto; /* Pushes button to the bottom of the flex container */
}


/* Recommended Badge Styling */
.recommended-badge {
    position: absolute;
    top: 15px;
    right: -30px; /* Positions the badge rotated over the top-right corner */
    background-color: #e53935; /* Red color for the badge */
    color: white;
    padding: 5px 30px;
    font-size: 0.75em;
    font-weight: 700;
    text-transform: uppercase;
    transform: rotate(45deg); /* Rotates the badge */
    transform-origin: 100% 0%; /* Ensures rotation is around the top-right */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 10; /* Ensures it sits above other content */
}


/* Responsive adjustments for pricing cards */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr; /* Stack cards on mobile */
        gap: 25px;
    }
    .pricing-card {
        padding: 25px;
    }
    .pricing-card h3.price {
        font-size: 2.2em; /* Slightly smaller price on mobile */
    }
    .package-tag {
        font-size: 0.8em;
    }
    .features-list li {
        font-size: 0.9em;
    }
}

/* Further adjustments for very small screens (e.g., iPhone SE) */
@media (max-width: 480px) {
    .pricing-card h3.price {
        flex-direction: column; /* Stack price and duration vertically on very small screens */
        align-items: center;
    }
    .pricing-card h3.price span.duration {
        margin-left: 0;
        margin-top: 5px; /* Add some space above "per month" */
    }
}