/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --header-height: 70px;
    --mobile-header-height: 60px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.9em;
}

.contact-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Header */
.main-header {
    background-color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    max-width: 200px;
}

@media (max-width: 768px) {
    .logo {
        height: 50px;
        max-width: 160px;
    }
}

@media (max-width: 480px) {
    .logo {
        height: 40px;
        max-width: 140px;
    }
}

.logo:hover {
    transform: scale(1.05);
}

/* Mobile Menu Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s ease;
}

.menu-toggle:hover {
    color: var(--secondary-color);
}

.main-nav {
    display: flex;
    gap: 10px;
    align-items: center;
}

.main-nav a {
    color: var(--primary-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    cursor: pointer;
}

.main-nav a:hover {
    color: var(--secondary-color);
    background-color: rgba(52, 152, 219, 0.1);
}

.main-nav a.active {
    color: var(--secondary-color);
    background-color: rgba(52, 152, 219, 0.15);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    opacity: 0;
}

.main-nav a:hover::after {
    width: calc(100% - 20px);
    opacity: 1;
}

.main-nav a.active::after {
    width: calc(100% - 20px);
    opacity: 1;
}

.main-nav a[target="_blank"] {
    position: relative;
    padding-right: 32px;
}

.main-nav a[target="_blank"]::before {
    content: '\f35d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8em;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.main-nav a[target="_blank"]:hover::before {
    transform: translateY(-50%) translateX(2px);
    opacity: 1;
}

.main-nav a[target="_blank"]:hover::after {
    width: calc(100% - 40px);
}

.main-nav a[target="_blank"].active::after {
    width: calc(100% - 40px);
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 16px 16px;
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

    .main-nav.active {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .main-nav a {
        padding: 1rem;
        border-radius: 8px;
    }

    .mobile-dropdown {
        width: 100%;
    }

    .mobile-dropdown .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        padding: 1rem !important;
        border-radius: 8px;
        background: transparent;
    }

    .mobile-dropdown .dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 0.5rem;
        padding: 0.5rem;
        box-shadow: none;
        border: 1px solid rgba(0, 0, 0, 0.08);
        background: #f8f9fa;
        display: none;
    }

    .mobile-dropdown.active .dropdown-menu {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .mobile-dropdown .dropdown-menu a {
        padding: 0.8rem 1rem;
        margin: 0;
    }

    .mobile-dropdown .dropdown-menu::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .main-nav {
        top: 70px;
        height: calc(100vh - 70px);
        padding: 1.5rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: calc(100vh - 120px);
    background: linear-gradient(135deg, #2c3e50, #3498db);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.5;
}

.hero-section .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 2rem;
}

.hero-image {
    position: relative;
    width: 100%;
    animation: float 6s ease-in-out infinite;
}

.hero-image .full-width-hero {
    width: 100vw; /* Full viewport width */
    height: auto;
    max-width: none; /* Remove max-width constraint */
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    animation: slideInRight 0.8s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    animation: slideInLeft 0.8s ease-out 0.2s backwards;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
    animation: slideInLeft 0.8s ease-out 0.4s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: slideInLeft 0.8s ease-out 0.6s backwards;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button.primary {
    background: var(--secondary-color);
    color: white;
}

.cta-button.primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.4);
}

.cta-button.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-width: 600px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    50% {
        transform: translateY(-20px) translateX(-50%);
    }
}


/* Responsive Hero Section */
@media (max-width: 1024px) {
    .hero-section .container {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        grid-row: 1;
    }

    .hero-image .full-width-hero {
        width: 100vw;
        position: relative;
        left: 0;
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: calc(100vh - 100px);
    }

    .hero-image .full-width-hero {
        width: 100vw;
    }
}

/* Hero Dropdown */
.hero-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle, .dropdown-trigger {
    position: relative;
    padding-right: 2.5rem !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle .fa-chevron-down,
.dropdown-trigger .fa-chevron-down {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8em;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.8;
}

.dropdown:hover .fa-chevron-down,
.hero-dropdown:hover .fa-chevron-down {
    transform: translateY(-50%) rotate(180deg);
    opacity: 1;
}

/* Common Dropdown Menu Styles */
.dropdown-menu,
.hero-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    min-width: 280px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 100;
    padding: 0.6rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.dropdown-menu::before,
.hero-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 25px;
    width: 12px;
    height: 12px;
    background: inherit;
    transform: rotate(45deg);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    z-index: -1;
}

.dropdown:hover .dropdown-menu,
.hero-dropdown:hover .hero-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Items Styling */
.dropdown-menu a,
.dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.9rem 1.2rem;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    line-height: 1;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.dropdown-menu a i,
.dropdown-item i {
    margin-right: 0.8rem;
    font-size: 1.1em;
    width: 24px;
    text-align: center;
    color: var(--secondary-color);
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.dropdown-menu a:hover,
.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(52, 152, 219, 0.05) 100%);
    color: var(--secondary-color);
    transform: translateX(4px);
}

.dropdown-menu a:hover i,
.dropdown-item:hover i {
    transform: scale(1.1);
}

.dropdown-menu a:active,
.dropdown-item:active {
    transform: translateX(4px) scale(0.98);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .dropdown-menu,
    .hero-dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        margin-top: 0.5rem;
        background: white;
    }

    .dropdown-menu::before,
    .hero-dropdown-menu::before {
        display: none;
    }

    .dropdown-menu a,
    .dropdown-item {
        padding: 1rem;
        border-radius: 6px;
    }

    .dropdown.active .dropdown-menu,
    .hero-dropdown.active .hero-dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

/* Navigation Dropdown Menu */
.main-nav .dropdown-menu {
    min-width: 280px;
}

.main-nav .dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.2rem;
    white-space: nowrap;
    line-height: 1;
}

.main-nav .dropdown-menu a i {
    margin-right: 0.8rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .hero-dropdown-menu,
    .main-nav .dropdown-menu {
        width: 100%;
    }

    .dropdown-item,
    .main-nav .dropdown-menu a {
        padding: 1rem;
    }
}

/* Sections Common Styles */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: clamp(1.5em, 3vw, 2em);
    color: var(--primary-color);
}

/* Cards Grid System */
.grid-system {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 40px;
    margin-top: 40px;
}

.about-text {
    font-size: clamp(0.9em, 2vw, 1.1em);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
}

/* Mission Cards */
.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.mission-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    animation: pulse 2s infinite;
}

.mission-icon i {
    font-size: 2rem;
    color: white;
}

.mission-card:hover .mission-icon {
    transform: rotate(360deg);
    background: var(--primary-color);
}

.mission-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.mission-card p {
    text-align: left;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.mission-statement {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: white;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-top: 4rem;
}

.statement-content {
    padding-right: 2rem;
}

.statement-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.statement-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.statement-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
    display: block;
    margin: 0 auto;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(1.1);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .mission-grid {
        gap: 1.5rem;
    }

    .mission-statement {
        gap: 2rem;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .mission-section {
        padding: 3rem 0;
    }

    .mission-statement {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .statement-content {
        padding-right: 0;
    }

    .statement-content h3 {
        font-size: 1.5rem;
    }

    .statement-image {
        grid-row: 1;
    }

    .statement-image img {
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .mission-grid {
        gap: 1rem;
    }

    .mission-card {
        padding: 1.5rem;
    }

    .mission-icon {
        width: 60px;
        height: 60px;
    }

    .mission-icon i {
        font-size: 1.5rem;
    }

    .mission-statement {
        padding: 1.5rem;
        margin-top: 2rem;
    }
}

/* Products Section */
.products-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    display: flex;
    flex-direction: column;
    min-height: 320px;
    padding: 2.5rem 2rem;
}

.product-card i {
    margin-bottom: 1.5rem;
}

.product-card h3 {
    margin-bottom: 1rem;
}

.product-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.product-card button {
    align-self: center;
    min-width: 160px;
    margin-top: auto;
    background-color: var(--primary-color);
    color: white;
    transition: all 0.2s ease-in-out;
}

.product-card button:hover {
    background-color: #34495e;
}

.product-card button i {
    margin-left: 8px;
    margin-bottom: 0;
    font-size: 0.9em;
}

/* Responsive adjustments for product cards */
@media (max-width: 768px) {
    .product-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .product-card {
        min-height: 300px;
        padding: 2rem 1.5rem;
    }

    .product-card button {
        min-width: 140px;
    }
}

@media (max-width: 480px) {
    .product-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-card {
        min-height: auto;
        padding: 1.5rem;
    }

    .product-card button {
        width: 100%;
    }
}

/* Card Styles */
.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(41, 128, 185, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.card:hover::before {
    opacity: 1;
}

.card i {
    font-size: 3em;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    position: relative;
    transition: transform 0.3s ease;
}

.card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
}

.card button {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.card button:hover::before {
    width: 300px;
    height: 300px;
}

/* Mission Cards Specific Styles */
.mission-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mission-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.mission-card:hover::after {
    transform: scaleX(1);
}

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

.mission-card i {
    font-size: 3.5em;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.mission-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

/* Product Cards Specific Styles */
.product-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, transparent 70%);
    transition: all 0.6s ease;
}

.product-card:hover::before {
    top: -50%;
    left: -50%;
}

.product-card i {
    font-size: 3em;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.product-card:hover i {
    transform: scale(1.1) rotate(10deg);
    color: var(--primary-color);
}

.product-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
}

.product-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
}

.product-card button {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Stats Cards */
.stat-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1) 0%, rgba(41, 128, 185, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 2.5em;
    font-weight: bold;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 0.5rem;
    position: relative;
}

.stat-label {
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9em;
    position: relative;
}

/* Responsive adjustments for cards */
@media (max-width: 768px) {
    .card,
    .mission-card,
    .product-card,
    .stat-item {
        padding: 1.5rem;
    }

    .card i,
    .mission-card i,
    .product-card i {
        font-size: 2.5em;
    }

    .stat-number {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .card,
    .mission-card,
    .product-card,
    .stat-item {
        padding: 1.25rem;
    }

    .card i,
    .mission-card i,
    .product-card i {
        font-size: 2em;
    }

    .stat-number {
        font-size: 1.8em;
    }
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 40px;
    margin-top: 40px;
}

.contact-form form {
    display: grid;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* Portal Section */
.portal-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    overflow-y: auto;
}

.portal-section .container {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1000px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.portal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #eee;
}

.portal-header h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0;
}

.close-portal {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s ease;
}

.close-portal:hover {
    color: var(--primary-color);
}

.portal-nav {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.portal-nav button {
    flex: 1;
    padding: 1rem;
    border: none;
    background: none;
    color: #666;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 6px;
}

.portal-nav button:hover {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.portal-nav button.active {
    background: var(--primary-color);
    color: #fff;
}

/* Management Portal Form Styles */
.section h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.section h2 i {
    color: var(--secondary-color);
    font-size: 1.6rem;
}

.form-container {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    border: 1px solid #eee;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 1rem;
    color: #aaa;
    transition: color 0.2s ease;
}

.input-group input {
    width: 100%;
    padding: 0.8rem 1rem 0.8rem 2.8rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background: #f8f9fa;
}

.input-group input:focus {
    border-color: var(--secondary-color);
    background: #fff;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.1);
    outline: none;
}

.input-group input:focus + i {
    color: var(--secondary-color);
}

.input-group input::placeholder {
    color: #aaa;
    font-size: 0.9rem;
}

.submit-btn {
    background: var(--secondary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    width: 100%;
}

.submit-btn i {
    font-size: 1rem;
    transition: transform 0.2s ease;
}

.submit-btn:hover {
    background: #2980b9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
}

.submit-btn:hover i {
    transform: rotate(90deg);
}

/* List Styles */
.list-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.list-item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #eee;
    transition: all 0.2s ease;
}

.list-item:hover {
    background: #f8f9fa;
}

.list-item-content {
    display: grid;
    gap: 0.5rem;
}

.list-item-title {
    font-weight: 500;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.list-item-title i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.list-item-subtitle {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.list-item-actions {
    display: flex;
    gap: 0.8rem;
}

.list-item-actions button {
    background: none;
    border: none;
    padding: 0.5rem;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.list-item-actions .edit-btn:hover {
    color: var(--secondary-color);
}

.list-item-actions .delete-btn:hover {
    color: #e74c3c;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .submit-btn {
        margin-top: 1rem;
    }

    .list-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .list-item-actions {
        justify-content: flex-end;
    }
}

@media (max-width: 480px) {
    .section h2 {
        font-size: 1.5rem;
    }

    .form-container {
        padding: 1rem;
    }

    .input-group input {
        padding: 0.7rem 1rem 0.7rem 2.5rem;
    }
}

/* Form Styles */
.form-container {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    border: 1px solid #eee;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: end;
}

.form-container input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #eee;
    border-radius: 6px;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background: #f8f9fa;
}

.form-container input:focus {
    border-color: var(--secondary-color);
    background: #fff;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.1);
    outline: none;
}

.form-container input::placeholder {
    color: #aaa;
}

.form-container button {
    background: var(--secondary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s ease;
    width: 100%;
}

.form-container button:hover {
    background: #2980b9;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
}

/* List Container Styles */
.list-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.list-item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee;
    transition: all 0.2s ease;
}

.list-item:last-child {
    border-bottom: none;
}

.list-item:hover {
    background: #f8f9fa;
}

.list-item-content {
    display: grid;
    gap: 0.5rem;
}

.list-item-title {
    font-weight: 500;
    color: var(--primary-color);
}

.list-item-subtitle {
    color: #666;
    font-size: 0.9rem;
}

.list-item-actions {
    display: flex;
    gap: 0.5rem;
}

.list-item-actions button {
    background: none;
    border: none;
    padding: 0.5rem;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.list-item-actions button:hover {
    color: var(--primary-color);
}

.list-item-actions .edit-btn:hover {
    color: var(--secondary-color);
}

.list-item-actions .delete-btn:hover {
    color: #e74c3c;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .portal-section .container {
        margin: 1rem;
        padding: 1.5rem;
    }

    .portal-nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .form-container {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .list-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .list-item-actions {
        justify-content: flex-end;
    }
}

@media (max-width: 480px) {
    .portal-section .container {
        margin: 0.5rem;
        padding: 1rem;
    }

    .form-container {
        padding: 1rem;
    }

    .portal-header h2 {
        font-size: 1.5rem;
    }
}

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    font-size: 1.5em;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: var(--mobile-header-height);
    }

    .top-bar {
        display: none;
    }

    .main-header .container {
        padding: 10px 20px;
    }

    .hero-section {
        padding: 60px 20px;
        min-height: 50vh;
    }

    .about-content {
        gap: 30px;
    }

    .contact-content {
        gap: 30px;
    }

    .portal-section .container {
        margin: 20px auto;
        padding: 20px;
    }

    .portal-nav {
        flex-direction: column;
    }

    .portal-nav button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-section {
        padding: 40px 15px;
    }

    .card {
        padding: 20px;
    }

    .footer-content {
        gap: 30px;
    }

    .social-links {
        justify-content: center;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Button Styles */
.btn,
button {
    position: relative;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    border: none;
    border-radius: 6px;
    background-color: var(--secondary-color);
    color: var(--white);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn:hover,
button:hover {
    background-color: #2980b9;
    transform: translateY(-1px);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.btn:active,
button:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Primary Button */
.btn-primary {
    background-color: #3498db;
    color: white;
}

.btn-primary:hover {
    background-color: #2980b9;
}

/* Secondary Button */
.btn-secondary {
    background-color: #34495e;
    color: white;
}

.btn-secondary:hover {
    background-color: #2c3e50;
}

/* Success Button */
.btn-success {
    background-color: #2ecc71;
    color: white;
}

.btn-success:hover {
    background-color: #27ae60;
}

/* Danger Button */
.btn-danger {
    background-color: #e74c3c;
    color: white;
}

.btn-danger:hover {
    background-color: #c0392b;
}

/* Outline Button */
.btn-outline {
    background-color: transparent;
    border: 1.5px solid var(--secondary-color);
    color: var(--secondary-color);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: white;
}

/* Icon Button */
.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-icon i {
    font-size: 1em;
    transition: transform 0.2s ease;
}

.btn-icon:hover i {
    transform: translateX(2px);
}

/* Large Button */
.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

/* Small Button */
.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* Block Button */
.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Disabled Button */
.btn:disabled,
button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none !important;
}

/* Loading Button */
.btn-loading {
    position: relative;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: button-loading-spinner 0.8s linear infinite;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }
    to {
        transform: rotate(1turn);
    }
}

/* Responsive Buttons */
@media (max-width: 768px) {
    .btn,
    button {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 12px 28px;
        font-size: 0.95rem;
    }

    .btn-sm {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .btn,
    button {
        padding: 8px 20px;
        font-size: 0.85rem;
    }

    .btn-lg {
        padding: 10px 24px;
        font-size: 0.9rem;
    }

    .btn-sm {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

/* Management Tabs */
.management-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 1rem;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 8px;
    background: #f8f9fa;
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn i {
    font-size: 1.1rem;
}

.tab-btn:hover {
    background: #eee;
    color: var(--primary-color);
}

.tab-btn.active {
    background: var(--secondary-color);
    color: white;
}

.tab-content {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.tab-pane {
    display: none;
    padding: 2rem;
}

.tab-pane.active {
    display: block;
}

/* Project Management Styles */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.project-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.2s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.project-header h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 0;
}

.project-status {
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.project-status.planning {
    background: #fff3cd;
    color: #856404;
}

.project-status.in-progress {
    background: #cce5ff;
    color: #004085;
}

.project-status.completed {
    background: #d4edda;
    color: #155724;
}

.project-desc {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.2rem;
    font-size: 0.9rem;
    color: #666;
}

.project-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.progress-bar {
    height: 8px;
    background: #eee;
    border-radius: 4px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--secondary-color);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .management-tabs {
        flex-wrap: wrap;
    }

    .tab-btn {
        flex: 1 1 calc(50% - 0.5rem);
        justify-content: center;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }

    .tab-pane {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tab-btn {
        flex: 1 1 100%;
    }

    .project-meta {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* Height of fixed header */
}

body {
    overflow-x: hidden;
}

/* Section Visibility */
.section {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.section.hidden {
    display: none;
    opacity: 0;
    visibility: hidden;
}

/* Active Navigation Styles */
.main-nav a {
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a.active {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .main-nav a::after {
        bottom: auto;
        left: 0;
        transform: none;
    }
    
    .main-nav a:hover::after,
    .main-nav a.active::after {
        width: 4px;
        height: 100%;
        top: 0;
    }
}

/* Services Section */
.services-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

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

.service-card:hover::before {
    opacity: 0.02;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
    position: relative;
    z-index: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    background: var(--primary-color);
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    position: relative;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #555;
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--secondary-color);
    margin-right: 0.8rem;
    font-size: 0.9rem;
}

.service-cta {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    margin-top: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-cta h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.service-cta p {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .services-section {
        padding: 3rem 0;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-cta {
        padding: 2rem;
        margin-top: 3rem;
    }

    .service-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 1.2rem;
    }

    .service-features li {
        font-size: 0.9rem;
    }
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    padding-right: 2rem !important;
    position: relative;
}

.dropdown-toggle .fa-chevron-down {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.dropdown:hover .fa-chevron-down {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.2rem;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
    line-height: 1;
}

.dropdown-menu a:hover {
    background: rgba(52, 152, 219, 0.1);
    color: var(--secondary-color);
}

.dropdown-menu a i {
    margin-right: 0.8rem;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .dropdown {
        display: block;
    }

    .dropdown-toggle {
        display: block;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        background: rgba(255, 255, 255, 0.05);
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0;
        margin: 0.5rem 0;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        padding: 1rem 2rem;
        border-radius: 0;
    }

    .dropdown-menu a:hover {
        background: rgba(52, 152, 219, 0.05);
    }
}

.contact-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    background: #fff;
    appearance: none; /* Remove default arrow */
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 12"><path fill="%23333" d="M6 9L2 5h8z"/></svg>'); /* Custom arrow */
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.contact-form select:focus {
    border-color: var(--secondary-color);
    outline: none;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.5);
}

     .popup {
                        display: none;
                        position: fixed;
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%, -50%);
                        background-color: white;
                        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
                        border-radius: 10px;
                        padding: 20px;
                        width: 350px;
                        text-align: center;
                        z-index: 1000;
                        animation: fadeIn 0.5s ease-in-out;
                    }
                    
                    .popup-content {
                        position: relative;
                    }
                
                    .popup h2 {
                        margin-top: 0;
                        color: #28a745;
                    }
                
                    .popup p {
                        font-size: 16px;
                        color: #333;
                    }
                
                    .close-btn {
                        position: absolute;
                        top: 5px;
                        right: 10px;
                        font-size: 20px;
                        cursor: pointer;
                    }
