/* Basic Reset and Global Styles */
:root {
    --primary-color: #004d99;
    --secondary-color: #007bff;
    --text-color: #333;
    --light-bg: #f4f7fa;
    --card-bg: #ffffff;
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

/* ROAD SIGNS, SIGNALS & MARKINGS MENU */
        /* Modern Menu Section */
.menu-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 80px 20px 100px;
    position: relative;
    overflow: hidden;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.3), transparent);
}

.section-header {
    max-width: 1200px;
    margin: 0 auto;
}

.menu-section .section-title {
    color: var(--primary-color);
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    border: none;
    padding-bottom: 0;
    display: block;
}

.menu-section .section-title::after {
    content: "";
    width: 120px;
    height: 4px;
    display: block;
    margin: 20px auto 60px;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--secondary-color), #00d4ff);
}

.menu-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    list-style: none;
    padding: 0;
}

.menu-item {
    background: rgb(235, 235, 241);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 77, 153, 0.1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.05), transparent);
    transition: left 0.5s ease;
}

.menu-item:hover::before {
    left: 100%;
}

.menu-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 123, 255, 0.2);
    border-color: rgba(0, 123, 255, 0.3);
}

.menu-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
    margin: 0 auto 25px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: transform 0.4s ease;
}

.menu-item:hover .menu-image {
    transform: scale(1.1) rotate(5deg);
}

.menu-item .name {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 600;
    margin: 20px 0 15px;
    letter-spacing: 0.5px;
}

.menu-item .text {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 10px;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .menu-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media screen and (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .menu-section {
        padding: 60px 15px 80px;
    }

    .menu-section .section-title {
        font-size: 2rem;
    }

    .menu-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .menu-item {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 640px) {
    .hero h1 {
        font-size: 2rem;
    }

    .menu-item .name {
        font-size: 1.2rem;
    }

    .menu-image {
        width: 150px;
        height: 150px;
    }
}


/* Slider Section */
.slider-section {
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 80vh;
    max-height: 600px;
    margin: 60px auto;
    background: #f5f5f5;
    box-shadow: 0 30px 50px #dbdbdb;
    overflow: hidden;
}

.slider-section .slide .item {
    width: 200px;
    height: 300px;
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border-radius: 20px;
    box-shadow: 0 30px 50px #505050;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: 0.5s;
}

.slide .item:nth-child(1),
.slide .item:nth-child(2) {
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
}

.slide .item:nth-child(3) {
    left: 50%;
}
.slide .item:nth-child(4) {
    left: calc(50% + 220px);
}
.slide .item:nth-child(5) {
    left: calc(50% + 440px);
}

.slide .item:nth-child(n + 6) {
    left: calc(50% + 660px);
    opacity: 0;
}

.item .content {
    position: absolute;
    top: 50%;
    left: 100px;
    width: 300px;
    text-align: left;
    color: #eee;
    transform: translate(0, -50%);
    display: none;
}

.slide .item:nth-child(2) .content {
    display: block;
}

.content .name {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
}

.content .des {
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
}

.content button {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    opacity: 0;
    animation: animate 1s ease-in-out 0.6s 1 forwards;
    background: #fff;
    color: #000;
    border-radius: 5px;
}

@keyframes animate {
    from {
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }
    to {
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}

.button {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 20px;
    z-index: 10;
}

.button button {
    width: 40px;
    height: 35px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    border: 1px solid #000;
    transition: 0.3s;
    background: #fff;
}

.button button:hover {
    background: #ababab;
    color: #fff;
}

.social-icons {
    position: absolute;
    top: 20px;
    right: 20px;
    display: none;
    gap: 15px;
    z-index: 10;
}

.slide .item:nth-child(2) .social-icons {
    display: flex;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-icons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-icons a.facebook:hover {
    background: #1877f2;
    color: #fff;
}

.social-icons a.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.social-icons a.tiktok:hover {
    background: #000;
    color: #fff;
}

/* Content Container */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 15px;
    box-shadow: var(--shadow-light);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.hero h2 {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Card Styling */
.card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    border-bottom: 3px solid var(--secondary-color);
    display: inline-block;
    padding-bottom: 5px;
}

/* Mission and Vision Grid */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.mission-section .section-title,
.vision-section .section-title {
    font-size: 1.5rem;
}

.vision-points p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-left: 0;
}

.vision-points .icon {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 5px;
}

/* Program Section */
.program-features {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.program-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 10px;
    border-left: 4px solid var(--primary-color);
    background-color: #f7f9fc;
    border-radius: 5px;
}

.program-features li i {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-right: 15px;
    margin-top: 2px;
}

/* Animation Styles */
.fade-in-section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.mission-vision-grid .fade-in-section:nth-child(1) { transition-delay: 0.1s; }
.mission-vision-grid .fade-in-section:nth-child(2) { transition-delay: 0.3s; }
.program-section.fade-in-section { transition-delay: 0.5s; }

/* Tablet Styles */
@media screen and (max-width: 900px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 768px) {
    .slider-section {
        height: 70vh;
    }

    .slider-section .slide .item {
        width: 150px;
        height: 250px;
    }

    .slide .item:nth-child(4) {
        left: calc(50% + 170px);
    }
    .slide .item:nth-child(5) {
        left: calc(50% + 340px);
    }
    .slide .item:nth-child(n + 6) {
        left: calc(50% + 510px);
    }

    .item .content {
        left: 50px;
        width: 250px;
    }

    .content .name {
        font-size: 32px;
    }

    .content .des {
        font-size: 14px;
    }

    .content button {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* Mobile Styles */
@media screen and (max-width: 550px) {
    .slider-section {
        height: 100vh;
        max-height: none;
        margin-bottom: 20px;
    }

    .slider-section .slide .item {
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .slide .item:nth-child(3),
    .slide .item:nth-child(4),
    .slide .item:nth-child(5),
    .slide .item:nth-child(n + 6) {
        display: none;
    }

    .slide .item:nth-child(1),
    .slide .item:nth-child(2) {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transform: none;
    }

    .item .content {
        left: 30px;
        width: calc(100% - 60px);
        top: 60%;
    }

    .content .name {
        font-size: 36px;
    }

    .content .des {
        font-size: 16px;
    }

    .button {
        bottom: 30px;
    }

    .button button {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .hero {
        padding: 40px 15px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.7rem;
    }
}

/* Contact Section Container */
.contact-container {
    display: flex;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    width: 100%;
    margin: 60px auto 40px;
    overflow: hidden;
}

/* Contact Section Container */
.contact-container {
    display: flex;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    width: 100%;
    margin: 60px auto 40px;
    overflow: hidden;
}

/* Contact Info Section */
.contact-info-section {
    flex: 1;
    background: linear-gradient(135deg, #e0f0ff, #c5e0ff);
    padding: 40px;
    color: #002244;
}

.contact-info-section .section-title {
    font-size: 2.5em;
    color: #002a5c;
    margin-bottom: 15px;
    border: none;
}

.description {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #335d88;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.detail-item i {
    font-size: 1.2em;
    color: #004488;
    width: 25px;
    text-align: center;
    padding-top: 5px;
}

.detail-item .label {
    font-weight: bold;
    font-size: 0.9em;
    color: #002a5c;
    margin-bottom: 2px;
}

.detail-item .value {
    font-size: 0.95em;
    margin-top: 0;
    line-height: 1.2;
}

/* Form Section */
.form-section {
    flex: 1.2;
    padding: 40px;
}

#form-message {
    padding: 10px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    border-radius: 5px;
    display: none;
}

#form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

#form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-group {
    margin-bottom: 20px;
}

.form-group-row {
    display: flex;
    gap: 20px;
}

.form-group-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

label {
    display: block;
    font-weight: normal;
    font-size: 0.9em;
    color: #555;
    margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    background-color: #f9f9f9;
    font-family: 'Poppins', sans-serif;
}

input::placeholder,
textarea::placeholder {
    color: #aaa;
}

input:focus,
textarea:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
    background-color: #fff;
}

textarea {
    resize: vertical;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 30px;
}

.privacy-policy {
    font-size: 0.8em;
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
}

.privacy-policy:hover {
    color: #000;
}

.submit-btn {
    background-color: #007bff;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s, transform 0.1s;
}

.submit-btn:hover {
    background-color: #0056b3;
}

.submit-btn:active {
    transform: scale(0.98);
}

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 900px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        max-width: 90%;
    }

    .form-group-row {
        flex-direction: column;
        gap: 0;
    }

    .form-section,
    .contact-info-section {
        padding: 30px;
    }
}


/* Pricing Section */
.pricing-section {
    background: #eaeff5;
    padding: 60px 20px;
    margin-top: 60px;
}

.pricing-section h2 {
    text-align: center;
    color: #647df9;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.wrapper {
    max-width: 1090px;
    width: 100%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.wrapper .table {
    background: #fff;
    width: calc(33% - 20px);
    padding: 30px;
    position: relative;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.table .price-section {
    display: flex;
    justify-content: center;
}

.table .price-area {
    height: 120px;
    width: 120px;
    border-radius: 50%;
    padding: 2px;
}

.price-area .inner-area {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 3px solid #fff;
    line-height: 117px;
    text-align: center;
    color: #fff;
    position: relative;
}

.price-area .inner-area .text {
    font-size: 25px;
    font-weight: 400;
    position: absolute;
    top: -19px;
    left: 7px;
}

.price-area .inner-area .price {
    font-size: 43px;
    font-weight: 500;
    margin-left: 16px;
}

.table .package-name {
    width: 100%;
    height: 2px;
    margin: 35px 0;
    position: relative;
}

.table .package-name::before {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 25px;
    font-weight: 500;
    background: #fff;
    padding: 0 15px;
    transform: translate(-50%, -50%);
}

.table .features {
    list-style: none;
    padding: 0;
}

.table .features li {
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
}

.features li .list-name {
    font-size: 17px;
    font-weight: 400;
}

.features li .icon {
    font-size: 15px;
}

.features li .icon.check {
    color: #2db94d;
}

.features li .icon.cross {
    color: #cd3241;
}

.table .btn {
    width: 100%;
    display: flex;
    margin-top: 35px;
    justify-content: center;
}

.table .btn button {
    width: 80%;
    height: 50px;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    border: none;
    outline: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table .btn button:hover {
    border-radius: 5px;
}

.basic .price-area,
.basic .inner-area {
    background: #ffd861;
}

.basic .btn button {
    border: 2px solid #ffd861;
    background: #fff;
    color: #ffd861;
}

.basic .btn button:hover {
    background: #ffd861;
    color: #fff;
}

.premium .price-area,
.premium .inner-area,
.premium .btn button {
    background: #a26bfa;
}

.premium .btn button:hover {
    background: #833af8;
}

.ultimate .price-area,
.ultimate .inner-area {
    background: #43ef8b;
}

.ultimate .btn button {
    border: 2px solid #43ef8b;
    color: #43ef8b;
    background: #fff;
}

.ultimate .btn button:hover {
    background: #43ef8b;
    color: #fff;
}

.basic .package-name {
    background: #ffecb3;
}

.premium .package-name {
    background: #d0b3ff;
}

.ultimate .package-name {
    background: #baf8d4;
}

.basic .package-name::before {
    content: "Basic";
}

.premium .package-name::before {
    content: "Premium";
    font-size: 24px;
}

.ultimate .package-name::before {
    content: "Ultimate";
    font-size: 24px;
}

.table .ribbon {
    width: 150px;
    height: 150px;
    position: absolute;
    top: -10px;
    left: -10px;
    overflow: hidden;
}

.table .ribbon::before,
.table .ribbon::after {
    position: absolute;
    content: "";
    z-index: -1;
    display: block;
    border: 7px solid #4606ac;
    border-top-color: transparent;
    border-left-color: transparent;
}

.table .ribbon::before {
    top: 0px;
    right: 15px;
}

.table .ribbon::after {
    bottom: 15px;
    left: 0px;
}

.table .ribbon span {
    position: absolute;
    top: 30px;
    right: 0;
    transform: rotate(-45deg);
    width: 200px;
    background: #a26bfa;
    padding: 10px 0;
    color: #fff;
    text-align: center;
    font-size: 17px;
    text-transform: uppercase;
    box-shadow: 0 5px 10px rgba(0,0,0,0.12);
}

/* Responsive Design */
@media (max-width: 1020px) {
    .wrapper .table {
        width: calc(50% - 20px);
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .wrapper .table {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 15px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero h2 {
        font-size: 1rem;
    }

    .card {
        padding: 20px;
    }
}

/* Footer section */
.footer-section {
    background-color: #1a1a1a;
    padding: 60px 20px 30px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
}

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.footer-logo-text span {
    font-weight: 300;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--accent-color);
    margin-top: 3px;
    font-size: 0.95rem;
}

.footer-column h3 {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}
 
.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    border-color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
    padding: 12px 25px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-btn:hover {
    background: #25b9a5;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 212, 191, 0.3);
}

.social-icons-footer {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon-footer {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-footer:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
} 

/* Responsive Design */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

