/* Adison Solutions Theme Customization */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #00796B;
    /* Deep Teal */
    --primary-dark: #004D40;
    --secondary-color: #FF9800;
    /* Bright Orange */
    --secondary-light: #FFB74D;
    --bg-light: #F9FAFB;
    --text-dark: #212529;
    --text-muted: #666;
    --white: #ffffff;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

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

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

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


section {
    scroll-margin-top: 90px;
    /* Offset for fixed navbar */
}

/* Scroll To Top Button */
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-to-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}

.back-to-top:hover {
    background: var(--primary-dark);
    color: #fff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: 'Poppins', sans-serif;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color) !important;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 10px;
    position: relative;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-cta-btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    display: none;
    /* Hidden by default on small screens if needed, or adjust */
}

@media (min-width: 992px) {
    .nav-cta-btn {
        display: inline-block;
    }
}


/* Buttons */
.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: #fff;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: #F57C00;
    /* Darker orange */
    border-color: #F57C00;
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Hero Section */
.hero-section {
    padding: 8rem 0 5rem;
    background: linear-gradient(135deg, #E0F2F1 0%, #FFFFFF 100%);
    /* Light teal tint */
    position: relative;
}

.hero-title {
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 300;
}

/* Cards */
.feature-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
    border-radius: 8px;
    /* More angular/minimal */
    padding: 2.5rem;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #E0F2F1;
    /* Light Teal */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Process Steps */
.step-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 121, 107, 0.1);
    /* Primary very light */
    line-height: 1;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 0;
}

/* Footer */
.footer {
    background-color: #F8F9FA;
    padding: 5rem 0 2rem;
    border-top: 1px solid #E5E7EB;
}

.footer-link {
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.75rem;
    display: block;
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--primary-color);
}

/* Utilities */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.bg-primary-light {
    background-color: #E0F2F1;
}

.fw-bold {
    font-weight: 700 !important;
}

.badge-custom {
    background-color: var(--primary-color);
    color: white;
    padding: 0.5em 1em;
    font-weight: 500;
    border-radius: 4px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 6rem 0 3rem;
    }
}


/* Pricing Section */



/* Pricing Section */
.pricing .box {
    padding: 2.5rem 2rem;
    background: #fff;
    text-align: center;
    border-radius: 12px;
    /* Smoother corners */
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
    border: 1px solid rgba(0, 0, 0, 0.03);
    /* Lighter border */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing .box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.pricing .box h3 {
    font-weight: 700;
    margin: -2.5rem -2rem 1.5rem -2rem;
    /* Adjusted for larger padding */
    padding: 1.5rem 2rem;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
    color: var(--primary-dark);
    background: transparent;
    border-bottom: 2px solid #f0f0f0;
}

.pricing .box h4 {
    font-size: 3.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.pricing .box h4 sup {
    font-size: 1.5rem;
    position: absolute;
    top: 5px;
    left: -20px;
    color: var(--text-muted);
}

.pricing .box h4 span {
    color: #bababa;
    font-size: 1rem;
    font-weight: 300;
    display: block;
    margin-top: -5px;
}

.pricing .box ul {
    padding: 0;
    list-style: none;
    color: var(--text-dark);
    text-align: left;
    /* Better readability */
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing .box ul li {
    padding-bottom: 12px;
    display: flex;
    align-items: center;
}

.pricing .box ul li::before {
    content: "\f00c";
    /* FontAwesome Check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--secondary-color);
    /* Orange checkmarks */
    margin-right: 10px;
    font-size: 0.9em;
}

.pricing .box ul .na {
    color: #ccc;
    text-decoration: line-through;
}

.pricing .box ul .na::before {
    content: "\f00d";
    /* FontAwesome X */
    color: #ccc;
}

.pricing .btn-wrap {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
}

.pricing .btn-buy {
    background: var(--bg-light);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    display: inline-block;
    padding: 12px 40px;
    border-radius: 50px;
    /* Pill shape */
    transition: all 0.3s;
    font-size: 16px;
    font-weight: 600;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    width: 100%;
}

.pricing .btn-buy:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 121, 107, 0.2);
}

/* Featured / Mini Plan */
.pricing .featured {
    border: 2px solid var(--secondary-color);
    /* Orange Border */
    transform: scale(1.05);
    /* Slightly bigger */
    z-index: 2;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pricing .featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing .featured h3 {
    color: #fff;
    background: var(--secondary-color);
    border-bottom: none;
    margin-bottom: 2rem;
}

.pricing .featured .btn-buy {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}


/* Services Section */
.service-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

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

.service-card .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.service-card .bg-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.07;
    transform: rotate(-15deg);
    pointer-events: none;
    transition: all 0.3s ease;
}

.service-card:hover .bg-icon {
    transform: rotate(0deg) scale(1.1);
    opacity: 0.1;
}

/* Service Colors */
.service-card.color-1 {
    background-color: #E3F2FD;
}

/* Light Blue */
.service-card.color-1 .icon-wrapper {
    color: #1976D2;
}

.service-card.color-2 {
    background-color: #E8F5E9;
}

/* Light Green */
.service-card.color-2 .icon-wrapper {
    color: #388E3C;
}

.service-card.color-3 {
    background-color: #FFEBEE;
}

/* Light Red */
.service-card.color-3 .icon-wrapper {
    color: #D32F2F;
}

.service-card.color-4 {
    background-color: #E0F7FA;
}

/* Light Cyan */
.service-card.color-4 .icon-wrapper {
    color: #0097A7;
}

.service-card.color-5 {
    background-color: #F3E5F5;
}

/* Light Purple */
.service-card.color-5 .icon-wrapper {
    color: #7B1FA2;
}

.service-card.color-6 {
    background-color: #FFF3E0;
}

/* Light Orange */
.service-card.color-6 .icon-wrapper {
    color: #F57C00;
}


/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    position: relative;
    overflow: hidden;
}

/* Abstract shapes for visual interest */
.cta-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

.cta-section .btn {
    color: var(--primary-dark);
    border-radius: 50px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
}

.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
    background: #fff;
    color: var(--secondary-color);
}


/* Gallery Section */
.gallery-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 121, 107, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay i {
    color: #fff;
    font-size: 2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* HoneyPot Field - Hidden from humans */
.hp-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
}