* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    overflow-x: hidden;
    animation: pageLoad 1s ease-out;
}

@keyframes pageLoad {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Navigation */
nav {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
    backdrop-filter: blur(10px);
    padding: 0.6rem 5%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 2rem;
    font-weight: 800;
    color: #1f7244;
    animation: fadeInLeft 0.8s ease-out;
}

.logo-icon {
    height: 70px;
    width: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 50%;
    box-shadow: none;
}

.logo-icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    color: white;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}

.nav-menu li {
    animation: fadeInRight 0.8s ease-out;
    animation-fill-mode: backwards;
}

.nav-menu li:nth-child(1) {
    animation-delay: 0.1s;
}

.nav-menu li:nth-child(2) {
    animation-delay: 0.2s;
}

.nav-menu li:nth-child(3) {
    animation-delay: 0.3s;
}

.nav-menu li:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #1f7244;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1f7244;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-cta {
    background: #1f7244;
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #165a33;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 114, 68, 0.3);
}

.nav-cta::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
}

/* Hero Section with Bubbles */
.hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 5% 2rem 5%;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    min-height: 70vh;
    position: relative;
    overflow: hidden;
    z-index: 1;
    scroll-margin-top: 100px;
}

#home {
    scroll-margin-top: 100px;
}

#about {
    scroll-margin-top: 100px;
}

#courses {
    scroll-margin-top: 100px;
}

#contact {
    scroll-margin-top: 100px;
}

/* Animated Background Bubbles - Now inside hero */
.bubble-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(31, 114, 68, 0.1), rgba(42, 144, 89, 0.15));
    animation: float 20s infinite ease-in-out;
}

.bubble:nth-child(1) {
    width: 300px;
    height: 300px;
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.bubble:nth-child(2) {
    width: 200px;
    height: 200px;
    right: 15%;
    top: 40%;
    animation-delay: 3s;
    animation-duration: 20s;
}

.bubble:nth-child(3) {
    width: 400px;
    height: 400px;
    left: 50%;
    bottom: 10%;
    animation-delay: 6s;
    animation-duration: 30s;
}

.bubble:nth-child(4) {
    width: 250px;
    height: 250px;
    right: 30%;
    top: 10%;
    animation-delay: 2s;
    animation-duration: 22s;
}

.bubble:nth-child(5) {
    width: 180px;
    height: 180px;
    left: 30%;
    bottom: 20%;
    animation-delay: 5s;
    animation-duration: 18s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    25% {
        transform: translate(50px, -50px) scale(1.1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-30px, -100px) scale(0.9);
        opacity: 0.4;
    }

    75% {
        transform: translate(70px, -60px) scale(1.05);
        opacity: 0.6;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #e6f7ed 0%, #d1f0df 100%);
    color: #1f7244;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 15px rgba(31, 114, 68, 0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(31, 114, 68, 0.1);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 6px 20px rgba(31, 114, 68, 0.2);
    }
}

.hero h1 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.15;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero h1 .highlight {
    color: #1f7244;
    position: relative;
    display: inline-block;
    animation: colorShift 3s infinite;
}

@keyframes colorShift {

    0%,
    100% {
        color: #1f7244;
    }

    50% {
        color: #2a9059;
    }
}

.hero-description {
    font-size: 0.88rem;
    line-height: 1.55;
    color: #555;
    margin-bottom: 1.2rem;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-features {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 0;
    flex-direction: row;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 1s ease-out backwards;
    padding: 12px 16px;
    background: linear-gradient(135deg, rgba(31, 114, 68, 0.05), rgba(42, 144, 89, 0.08));
    border-radius: 12px;
    border-left: 4px solid #1f7244;
    transition: all 0.3s ease;
    flex: 1;
}

.feature-item:nth-child(1) {
    animation-delay: 0.6s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.8s;
}

.feature-item:hover {
    background: linear-gradient(135deg, rgba(31, 114, 68, 0.1), rgba(42, 144, 89, 0.15));
    transform: translateX(8px);
}

.form-and-features-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1f7244 0%, #2a9059 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(31, 114, 68, 0.25);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.feature-item:hover .feature-icon {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 30px rgba(31, 114, 68, 0.4);
}

.feature-text h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 0.75rem;
    color: #666;
}

.form-container {
    position: relative;
    z-index: 10;
    animation: fadeInRight 1s ease-out 0.6s backwards;
}

.card-background {
    position: absolute;
    top: 25px;
    left: -20px;
    right: 20px;
    bottom: -25px;
    background: linear-gradient(135deg, rgba(31, 114, 68, 0.08), rgba(42, 144, 89, 0.12));
    border-radius: 20px;
    z-index: 1;
    animation: floatCard1 6s infinite ease-in-out;
}

.card-background::before {
    content: '';
    position: absolute;
    top: -12px;
    left: 10px;
    right: -10px;
    bottom: 12px;
    background: linear-gradient(135deg, rgba(31, 114, 68, 0.12), rgba(42, 144, 89, 0.18));
    border-radius: 20px;
    z-index: 2;
    animation: floatCard2 5s infinite ease-in-out;
}

@keyframes floatCard1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-15px, -15px) rotate(-2deg);
    }
}

@keyframes floatCard2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(10px, -10px) rotate(1deg);
    }
}

.enquiry-form {
    background: white;
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(31, 114, 68, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 10;
    transform: translateZ(0);
}

.enquiry-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1f7244 0%, #2a9059 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }

    100% {
        opacity: 1;
    }
}

.form-header {
    text-align: center;
    margin-bottom: 1rem;
}

.form-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.form-header p {
    color: #666;
    font-size: 0.8rem;
    animation: fadeIn 0.8s ease-out 0.2s backwards;
}

.form-group {
    margin-bottom: 0.85rem;
    animation: slideInLeft 0.6s ease-out backwards;
    position: relative;
}

.form-group:nth-child(1) {
    animation-delay: 0.1s;
}

.form-group:nth-child(2) {
    animation-delay: 0.2s;
}

.form-group:nth-child(3) {
    animation-delay: 0.3s;
}

.form-group:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    color: #333;
    font-size: 0.78rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 0.85rem;
    color: #1f7244;
    font-size: 1rem;
    pointer-events: none;
    z-index: 1;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.65rem 0.85rem 0.65rem 2.5rem;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group select {
    padding-left: 2.5rem;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1f7244;
    background: white;
    box-shadow: 0 4px 20px rgba(31, 114, 68, 0.1);
    transform: translateY(-2px);
}

.form-group input:focus+.input-icon,
.form-group select:focus~.input-icon {
    color: #2a9059;
}

.submit-btn {
    width: 100%;
    padding: 0.8rem;
    background: linear-gradient(135deg, #1f7244 0%, #2a9059 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(31, 114, 68, 0.3);
    margin-top: 0.15rem;
    animation: slideInLeft 0.6s ease-out 0.5s backwards;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(31, 114, 68, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.form-footer {
    text-align: center;
    margin-top: 0.7rem;
    font-size: 0.72rem;
    color: #888;
    animation: fadeIn 0.8s ease-out 0.8s backwards;
}

.form-footer i {
    animation: lockPulse 2s infinite;
}

@keyframes lockPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.decoration {
    position: absolute;
    opacity: 0.05;
    pointer-events: none;
    animation: decorationFloat 20s infinite ease-in-out;
    z-index: 1;
}

.decoration-1 {
    font-size: 20rem;
    color: #1f7244;
    top: -5rem;
    right: -5rem;
}

.decoration-2 {
    font-size: 15rem;
    color: #1f7244;
    bottom: -3rem;
    left: -3rem;
    animation-delay: 5s;
}

@keyframes decorationFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -20px) rotate(5deg);
    }

    50% {
        transform: translate(-20px, -40px) rotate(-5deg);
    }

    75% {
        transform: translate(30px, -10px) rotate(3deg);
    }
}

/* ===== ABOUT SECTION ===== */
.why-choose {
    position: relative;
    padding: 60px 5%;
    margin: 0;
    background: white;
    overflow: hidden;
}

.why-title {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInDown 1s ease-out forwards;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-title h2 {
    color: #1e2a38;
    font-size: 34px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.why-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #1f7244, #2a9059);
    border-radius: 2px;
    animation: expandLine 1.5s ease-out 0.5s forwards;
}

@keyframes expandLine {
    to {
        width: 100px;
    }
}

.why-title p {
    font-size: 20px;
    color: #333;
    margin-top: 15px;
    opacity: 0;
    animation: fadeIn 1s ease-out 0.3s forwards;
}

.why-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 50px 40px;
    align-items: center;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.center-img {
    position: relative;
    opacity: 0;
    animation: zoomIn 1s ease-out 0.6s forwards;
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5) rotate(-10deg);
    }

    to {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.center-img::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border-radius: 50%;
    border: 3px dashed #1f7244;
    opacity: 0.3;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.center-img img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.center-img img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(31, 114, 68, 0.4);
}

.why-box {
    text-align: center;
    max-width: 280px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.why-box:nth-child(1) {
    animation: slideInUp 0.8s ease-out 0.8s forwards;
}

.why-box:nth-child(2) {
    animation: slideInUp 0.8s ease-out 1s forwards;
}

.why-box:nth-child(4) {
    animation: slideInUp 0.8s ease-out 1.2s forwards;
}

.why-box:nth-child(5) {
    animation: slideInUp 0.8s ease-out 1.4s forwards;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.why-box:hover {
    transform: translateY(-10px);
}

.why-box:hover .icon {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #fff;
    font-size: 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.why-box:hover .icon::before {
    width: 100px;
    height: 100px;
}

.icon i {
    position: relative;
    z-index: 1;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.why-box h3 {
    font-size: 18px;
    font-weight: 800;
    background: linear-gradient(90deg, #1a1a1a 0%, #1f7244 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 15px 0 10px;
    transition: all 0.3s ease;
}

.why-box:hover h3 {
    background: linear-gradient(90deg, #1f7244 0%, #2a9059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.why-box:hover p {
    color: #333;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(31, 114, 68, 0.05), rgba(42, 144, 89, 0.08));
    animation: floatBubble 15s ease-in-out infinite;
    pointer-events: none;
}

.why-choose::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(31, 114, 68, 0.05), rgba(42, 144, 89, 0.08));
    animation: floatBubble 18s ease-in-out infinite reverse;
    pointer-events: none;
}

@keyframes floatBubble {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

/* ===== EXPLORE SECTION (CATEGORIES) ===== */
.explore-section {
    padding: 60px 5%;
    background: white;
    position: relative;
    overflow: hidden;
}

.explore-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.explore-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 1s ease-out;
}

.explore-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.explore-header .highlight-text {
    color: #1f7244;
    position: relative;
}

.explore-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.category-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid #f0f0f0;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    opacity: 0;
    animation: slideInUp 0.6s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.category-card:nth-child(1) {
    animation-delay: 0.1s;
}

.category-card:nth-child(2) {
    animation-delay: 0.2s;
}

.category-card:nth-child(3) {
    animation-delay: 0.3s;
}

.category-card:nth-child(4) {
    animation-delay: 0.4s;
}

.category-card:nth-child(5) {
    animation-delay: 0.5s;
}

.category-card:nth-child(6) {
    animation-delay: 0.6s;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #1f7244, #2a9059);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-12px);
    border-color: rgba(31, 114, 68, 0.2);
    box-shadow: 0 20px 50px rgba(31, 114, 68, 0.15);
}

.category-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 50px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-card:hover .category-icon::before {
    width: 120px;
    height: 120px;
}

.category-icon i {
    position: relative;
    z-index: 1;
    animation: iconFloat 3s ease-in-out infinite;
}

.category-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.category-card:hover h3 {
    color: #1f7244;
}

.category-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.category-count {
    display: inline-block;
    background: linear-gradient(135deg, #1f7244 0%, #2a9059 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.category-card:hover .category-count {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(31, 114, 68, 0.3);
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #1f7244 0%, #2a9059 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    margin-top: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.explore-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.explore-btn:hover::before {
    width: 200px;
    height: 200px;
}

.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(31, 114, 68, 0.3);
}

.explore-btn i {
    transition: transform 0.3s ease;
}

.explore-btn:hover i {
    transform: translateX(3px);
}

/* ===============================
   CAREER SECTION – PREMIUM
================================ */
.career-section {
    padding: 50px 20px;
    /* no extra space */
    margin: 0;
    background: linear-gradient(135deg, #f5fff9, #e9fff3);
    position: relative;
    overflow: hidden;
}

/* Floating gradient shapes */
.career-section::before,
.career-section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, #1f724433, transparent 70%);
    border-radius: 50%;
    animation: float 10s infinite alternate ease-in-out;
}

.career-section::before {
    top: -80px;
    left: -80px;
}

.career-section::after {
    bottom: -80px;
    right: -80px;
    animation-delay: 3s;
}

/* Container */
.career-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Tag */
.career-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #1f7244, #2fa86a);
    color: #fff;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 18px;
    animation: fadeDown 1s ease forwards;
}

/* Heading */
.career-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: #1f2d26;
    margin-bottom: 16px;
    line-height: 1.2;
    animation: fadeUp 1.1s ease forwards;
}

/* Text */
.career-content p {
    font-size: 16.5px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 28px;
    animation: fadeUp 1.3s ease forwards;
}

/* Button */
.career-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1f7244, #2fa86a);
    color: #fff;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeUp 1.5s ease forwards;
}

.career-btn i {
    transition: transform 0.3s ease;
}

.career-btn:hover i {
    transform: translateX(6px);
}

.career-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(-100%);
    transition: 0.4s;
}

.career-btn:hover::after {
    transform: translateX(100%);
}

.career-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(31, 114, 68, 0.4);
}

/* ===============================
   STATS
================================ */
.career-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.92);
    padding: 30px 20px;
    text-align: center;
    border-radius: 18px;
    backdrop-filter: blur(6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: zoomIn 1.2s ease forwards;
}

.stat-box i {
    font-size: 30px;
    color: #1f7244;
    margin-bottom: 10px;
}

.stat-box:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 45px rgba(31, 114, 68, 0.25);
}

.stat-box h3 {
    font-size: 34px;
    color: #1f7244;
    margin-bottom: 6px;
    font-weight: 800;
}

.stat-box p {
    font-size: 14.5px;
    color: #555;
}

/* ===============================
   ANIMATIONS
================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(40px);
    }
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
    .career-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .career-stats {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 520px) {
    .career-stats {
        grid-template-columns: 1fr;
    }

    .career-content h2 {
        font-size: 30px;
    }
}

/* ===== FOOTER SECTION ===== */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #e0e0e0;
    padding: 60px 5% 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(31, 114, 68, 0.1), rgba(42, 144, 89, 0.15));
    animation: floatBubble 20s ease-in-out infinite;
    pointer-events: none;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 50px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #1f7244, #2a9059);
    border-radius: 2px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1f7244 0%, #2a9059 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.footer-logo h3 {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin: 0;
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1f7244 0%, #2a9059 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(31, 114, 68, 0.3);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.footer-links li a::before {
    content: '→';
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links li a:hover {
    color: #1f7244;
    transform: translateX(5px);
}

.footer-links li a:hover::before {
    opacity: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 22px;
    color: #1f7244;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-item div {
    flex: 1;
}

.contact-item p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
}

.contact-item strong {
    color: white;
    font-weight: 700;
    display: block;
    margin-bottom: 3px;
}

.map-section {
    margin: 40px 0;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map-section h3 {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    text-align: center;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 25px 0;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: #999;
    font-size: 14px;
}

.footer-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(31, 114, 68, 0.2);
    color: #1f7244;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(31, 114, 68, 0.3);
    transition: all 0.3s ease;
}

.badge:hover {
    background: rgba(31, 114, 68, 0.3);
    border-color: rgba(31, 114, 68, 0.6);
}

.back-btn {
    background: linear-gradient(135deg, #1f7244 0%, #2a9059 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    margin-bottom: 25px;
    font-size: 14px;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(31, 114, 68, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2rem 5%;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .nav-menu {
        gap: 2rem;
    }

    .why-wrapper {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 40px;
    }

    .why-title {
        margin-bottom: 40px;
    }

    .center-img {
        grid-column: 1;
        grid-row: auto;
        order: 3;
        margin: 20px 0;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 5%;
    }

    .logo-icon {
        height: 50px;
        width: 50px;
    }

    .logo {
        font-size: 1.5rem;
        gap: 12px;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 2rem 5%;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: left 0.4s ease;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        font-size: 1.1rem;
        display: block;
    }

    .nav-cta {
        text-align: center;
        margin-top: 1rem;
    }

    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        font-size: 1.8rem;
        color: #1f7244;
        cursor: pointer;
        transition: transform 0.3s ease;
    }

    .mobile-menu-btn:active {
        transform: scale(0.9);
    }

    .hero {
        padding: 2rem 5% 2rem 5%;
        gap: 2.5rem;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .bubble {
        opacity: 0.5;
    }

    .why-choose {
        padding: 60px 20px;
        margin: 0;
    }

    .why-title h2 {
        font-size: 28px;
    }

    .center-img img {
        width: 220px;
        height: 220px;
    }

    .explore-header h2 {
        font-size: 32px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .explore-header h2 {
        font-size: 24px;
    }

    .explore-header p {
        font-size: 14px;
    }

    .category-card {
        max-width: 100%;
    }

    .category-icon {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
}

/* Footer Styles */
footer {
    background: #ffffff;
    position: relative;
    overflow: visible;
    padding: 60px 0 0;
    margin-top: 0;
    flex-shrink: 0;
}

/* World Map Background */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle, rgba(180, 180, 180, 0.3) 1.5px, transparent 1.5px),
        radial-gradient(circle, rgba(180, 180, 180, 0.3) 1.5px, transparent 1.5px);
    background-size: 25px 25px, 25px 25px;
    background-position: 0 0, 12.5px 12.5px;
    opacity: 1;
    pointer-events: none;
}

/* Additional circular patterns for map effect */
footer::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, transparent 40%, rgba(180, 180, 180, 0.15) 40.5%, transparent 41%),
        radial-gradient(circle, transparent 60%, rgba(180, 180, 180, 0.15) 60.5%, transparent 61%),
        radial-gradient(circle, transparent 80%, rgba(180, 180, 180, 0.15) 80.5%, transparent 81%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    opacity: 0.6;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

/* Additional map circles on left bottom */
.footer-container::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, transparent 45%, rgba(180, 180, 180, 0.15) 45.5%, transparent 46%),
        radial-gradient(circle, transparent 70%, rgba(180, 180, 180, 0.15) 70.5%, transparent 71%);
    pointer-events: none;
    opacity: 0.7;
    z-index: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 40px;
    position: relative;
    z-index: 2;
    align-items: start;
}

/* Quick Links Section */
.footer-section {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.footer-section:nth-child(1) {
    animation-delay: 0.2s;
}

.footer-section:nth-child(2) {
    animation-delay: 0.4s;
}

.footer-section:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #1f7244, #2a9059);
    border-radius: 2px;
    animation: expandUnderline 0.8s ease-out 0.5s forwards;
}

@keyframes expandUnderline {
    to {
        width: 50px;
    }
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLink 0.5s ease-out forwards;
}

.footer-links li:nth-child(1) {
    animation-delay: 0.3s;
}

.footer-links li:nth-child(2) {
    animation-delay: 0.4s;
}

.footer-links li:nth-child(3) {
    animation-delay: 0.5s;
}

.footer-links li:nth-child(4) {
    animation-delay: 0.6s;
}

.footer-links li:nth-child(5) {
    animation-delay: 0.7s;
}

@keyframes slideInLink {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '›';
    margin-right: 8px;
    color: #1f7244;
    font-weight: 700;
    transition: margin-right 0.3s ease;
}

.footer-links a:hover {
    color: #1f7244;
    transform: translateX(5px);
}

.footer-links a:hover::before {
    margin-right: 12px;
}

/* Newsletter Form */
.newsletter-wrapper {
    position: absolute;
    top: -60px;
    right: 5%;
    z-index: 100;
}

.newsletter-form {
    margin-top: 0;
    background: white;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 350px;
    max-width: 90vw;
}

.form-icon {
    width: 70px;
    height: 70px;
    background: #2c3e50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 30px;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f7244;
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: none;
}

.form-group input {
    width: 100%;
    padding: 12px 20px;
    border: 2px solid #e8e8e8;
    border-radius: 50px;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #f9f9f9;
    text-align: center;
}

.form-group input::placeholder {
    color: #999;
}

.form-group input:focus {
    outline: none;
    border-color: #1f7244;
    background: white;
    box-shadow: 0 0 0 3px rgba(31, 114, 68, 0.1);
}

.form-group textarea {
    display: none;
}

.submit-btn {
    background: #1f7244;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(31, 114, 68, 0.25);
}

.submit-btn i {
    display: none;
}

.submit-btn:hover {
    background: #165a33;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 114, 68, 0.35);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Registered Office */
.office-info {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    margin-top: 0;
}

.office-info p {
    color: #555;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 6px;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInFromLeft 0.6s ease-out forwards;
}

.office-info p:nth-child(1) {
    animation-delay: 0.1s;
}

.office-info p:nth-child(2) {
    animation-delay: 0.2s;
    margin-bottom: 12px;
}

.office-info p:nth-child(3) {
    animation-delay: 0.3s;
}

.office-info p:nth-child(4) {
    animation-delay: 0.4s;
}

.office-info p:nth-child(5) {
    animation-delay: 0.5s;
    margin-bottom: 12px;
}

.office-info p:nth-child(6) {
    animation-delay: 0.6s;
}

.office-info p:nth-child(7) {
    animation-delay: 0.7s;
}

@keyframes slideInFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.office-info p:last-child {
    margin-bottom: 0;
}

.office-info strong {
    color: #1a1a1a;
    font-weight: 700;
}

.office-info i {
    color: #1f7244;
    margin-right: 8px;
    width: 20px;
    display: none;
}

/* Social Section */
.social-section {
    padding: 25px 0;
    border-top: 1px solid #e0e0e0;
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.social-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.social-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    opacity: 0;
    transform: translateY(20px);
    animation: popUp 0.5s ease-out forwards;
}

.social-link:nth-child(1) {
    animation-delay: 1.2s;
}

.social-link:nth-child(2) {
    animation-delay: 1.3s;
}

.social-link:nth-child(3) {
    animation-delay: 1.4s;
}

.social-link:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes popUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Bottom Bar */
.footer-bottom {
    background: #f8f9fa;
    padding: 20px 0;
    border-top: 1px solid #e0e0e0;
}

.bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.copyright {
    color: #666;
    font-size: 13px;
}

/* Responsive Design */
@media (max-width: 968px) {
    footer {
        margin-top: 0;
        padding: 60px 0 0;
    }

    .newsletter-wrapper {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 30px;
        display: flex;
        justify-content: center;
    }

    .newsletter-form {
        width: 100%;
        max-width: 380px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .social-content {
        justify-content: center;
        text-align: center;
    }

    .bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 50px 0 0;
        margin-top: 0;
    }

    .newsletter-form {
        padding: 25px 20px;
    }

    .footer-section h3 {
        font-size: 18px;
    }

    .social-links {
        justify-content: center;
    }

    .social-link {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}