@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
    @import url("https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bungee&family=Raleway:ital,wght@0,100..900;1,100..900&family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
@font-face {
  font-family: "CustomFont";
  src: url("/fonts/659b8cd3ac962913174d819f_PP\ Hatton\ Medium\ 500.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
/* font-family: "Sansation", sans-serif;  
 font-family: "CustomFont", serif; */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        /* Header */
        .header {
            background: white;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        .logo {
            display: flex;
            align-items: center;
            font-weight: 600;
            font-size: 1.2rem;
            color: #8B4513;
        }

        .logo::before {
            content: '';
            width: 20px;
            height: 20px;
            background: #8B4513;
            margin-right: 8px;
            border-radius: 2px;
        }

        .nav {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav a {
            text-decoration: none;
            color: #333;
            font-weight: 400;
            transition: color 0.3s;
        }

        .nav a:hover {
            color: #8B4513;
        }
        
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            cursor: pointer;
        }
        
        .mobile-menu-toggle span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: #333;
            border-radius: 3px;
            transition: all 0.3s ease;
        }
        
        .mobile-menu-toggle span.active:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }
        
        .mobile-menu-toggle span.active:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu-toggle span.active:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }
        
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex;
            }
            
            .nav {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                align-items: center;
                padding: 2rem 0;
                gap: 1.5rem;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                z-index: 999;
            }
            
            .nav.active {
                transform: translateY(0);
            }
        }

        .search-icon {
            width: 20px;
            height: 20px;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            height: 600px;
            background: linear-gradient(rgba(255, 166, 0, 0.064), rgba(0, 0, 0, 0.69)), url('../images/673a9e6050e3f53e9240be11_Image\ 4.webp');
            background-size: cover;
            background-position: center;
            /* margin-top: 80px; */
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            position: relative;
            box-shadow: 0 0 30px rgba(255, 165, 0, 0.2) inset;
            filter: brightness(1.1) contrast(1.1) saturate(1.2);
           
            overflow: hidden;
        }
        
      

        .hero-content {
            position: absolute;
            bottom: 20%;
            left: 10%;
            color: white;
           
           
        }
        
       

        .hero-subtitle {
           
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 1rem;
            margin-left: 30px;
            font-family: "Raleway", sans-serif;
        }
        
        

        .hero-title {
            font-family: "Raleway", sans-serif;
            font-size: 9rem;
            font-weight: 600;
            line-height: 1.2;
            margin: 0;
           
        }
        
      

        .hero-subtitle {
            font-family: 'Inter', sans-serif;
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 1rem;
        }

        /* About Section */
        .about-section {
            padding: 5rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
            margin-top: 100px;
        }

        .section-title {
            text-align: center;
            font-size: 4.5rem;
            margin-bottom: 6rem;
            color: #000000;
            font-weight: 300;
            line-height: 1.2;
        }

        .section-title .highlight {
            font-style: italic;
            color: #363434;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: flex-start;
            margin-top: 2rem;
        }

        .about-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 10px;
            max-height: 400px;
        }

        .about-text {
            font-size: 1rem;
            line-height: 1.8;
            text-align: justify;
            color: #666;
        }
        
        .stats-container {
            display: flex;
            margin-top: 2.5rem;
            gap: 5rem;
        }
        
        .stat-item {
            display: flex;
            flex-direction: column;
        }
        
        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: #333;
            line-height: 1;
        }
        
        .stat-label {
            font-size: 1rem;
            color: #666;
            margin-top: 0.5rem;
        }

        /* Team Section */
        .team-section {
            padding: 6rem 2rem;
            background: #f8f8f8;
        }

        .team-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-title {
            font-size: 2.5rem;
            margin-bottom: 4rem;
            color: #666;
        }

        .team-title .highlight {
            color: #333;
            font-weight: 600;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .team-member {
            position: relative;
            height: 300px;
            border-radius: 8px;
            overflow: hidden;
        }

        .team-member img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .member-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 2rem 1.5rem 1.5rem;
        }

        .member-name {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .member-title {
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Mission Section */
        .mission-section {
            background: #000000;
            color: white;
            margin-top: 50px;
            padding: 6rem 2rem;
            text-align: center;
        }

      .mission-text {
    text-align: justify;
    font-size: 2.5rem;
    line-height: 1.2;
    max-width: 1000px;
    margin: 0 auto;
}

        .mission-text .highlight {
           
            font-weight: 700;
            color: rgb(255, 30, 0);
        }
        
        .mission-subtext {
            color: white;
            font-size: 1rem;
            margin-top: 2rem;
            opacity: 0.8;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.5;
        }

        /* Values Section */
        .values-section {
            padding: 6rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .values-title {
            font-size: 4rem;
            margin-bottom: 4rem;
            color: #000000;
        }

        .values-title .highlight {
            color: #666;
           
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
        }

        .value-item h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #000000;
        }

        .value-item p {
            color: #666;
            line-height: 1.6;
        }

        /* CTA Section */
  .cta-section {
    background: #F5F5F5;
    color: #000000;
    padding: 6rem 2rem;
    text-align: center;
    width: 99%;
    align-items: center;
    margin: 0 auto; /* centers the section horizontally */
}

        .cta-title {
            font-size: 1rem;
           
        }

        .cta-subtitle {
            font-size: 3rem;
            margin-bottom: 3rem;
            text-align: center;
            max-width: 1100px;
            line-height: 1.3;
            margin: 50px auto 3rem;
            font-weight: 400;
            color: #333333;
        }

        .cta-button {
            display: inline-block;
            padding: 1rem 2rem;
            border: 1px solid #333333;
              color: #333333;
            text-decoration: none;
            border-radius: 20px;
            transition: all 0.3s;
        }

        .cta-button:hover {
            background: white;
            color: #1a1a1a;
        }
.img-section {
    background-image: url(../images/673aa27f0092e895dd15ffc7_Image\ 8.webp);
    background-size: cover;
    background-position: center;
    color: #ffffff;
    padding: 8rem 4rem;
    width: 95%;
    max-width: 1400px;
    height: auto;
    margin: 0 auto 50px;
    position: relative;
    display: flex;
    align-items: flex-start;
    border-radius: 20px;
    overflow: hidden; /* so overlay respects border-radius */
}

/* Black overlay at the bottom */
.img-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%; /* Adjust height for overlay size */
    background: linear-gradient(to top, rgb(0, 0, 0), transparent);
    pointer-events: none; /* so it doesn't block clicks */
}


.cta-content {
    max-width: 600px;
    text-align: left;
    padding-left: 4rem;
    padding-top: 2rem;
}

.cta-heading {
    font-size: 4.5rem;
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 3rem;
    font-family: 'Inter', sans-serif;
}

.italic-text {
    font-style: italic;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    border:solid 2px #ffffff;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #f0f0f0;
}

.arrow {
    margin-left: 0.5rem;
}
        /* Footer */
        .footer {
            background-color: #222;
            color: #fff;
            padding: 4rem 2rem 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }

        .footer-section h3 {
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            font-weight: 600;
            color: #fff;
        }

        .footer-section ul {
            list-style: none;
            padding: 0;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section ul li a:hover {
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 3rem;
            padding-top: 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .social-links {
            display: flex;
            gap: 1.5rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: rgba(255, 255, 255, 0.2);
        }

        /* Responsive Styles */
        /* Large Desktop */
        @media (min-width: 1441px) {
            .section-title {
                font-size: 5rem;
            }
            
            .hero-content {
                bottom: 25%;
            }
            
            .hero-title {
                font-size: 10rem;
            }
            
            .about-section, .values-section {
                max-width: 1400px;
            }
            
            .mission-text {
                font-size: 3rem;
            }
            
            .header {
                padding: 1.5rem 3rem;
            }
            
            .nav {
                gap: 3rem;
            }
        }
        
        /* Desktop */
        @media (max-width: 1440px) {
            .hero-title {
                font-size: 8rem;
            }
            
            .section-title {
                font-size: 4rem;
            }
            
            .cta-subtitle {
                width: 90%;
                margin-left: auto;
                margin-right: auto;
            }
            
            .header {
                padding: 1.2rem 2.5rem;
            }
        }
        
        /* Small Desktop/Laptop */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 7rem;
            }
            
            .section-title {
                font-size: 3.5rem;
                margin-bottom: 4rem;
            }
            
            .about-content {
                gap: 2rem;
            }
            
            .mission-text {
                font-size: 3rem;
            }
            
            .cta-subtitle {
                font-size: 2.5rem;
                width: 90%;
                margin-left: auto;
                margin-right: auto;
                line-height: 1.3;
            }
            
            .cta-heading {
                font-size: 4rem;
            }
            
            .header {
                padding: 1rem 2rem;
            }
            
            .nav {
                gap: 1.5rem;
            }
        }
        
        /* Tablet */
        @media (max-width: 992px) {
            .hero {
                height: 500px;
            }
            
            .hero-title {
                font-size: 6rem;
            }
            
            .section-title {
                font-size: 3rem;
                margin-bottom: 3rem;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .about-image {
                max-height: 350px;
            }
            
            .stats-container {
                justify-content: center;
                display: flex;
            }
            
            /* Main section tablet styles */
            .main {
                padding: 50px 30px;
                height: auto;
                min-height: 80vh;
            }
            
            .filled-text, .outline-text {
                font-size: 5rem;
                top: 180px;
                left: 80px;
            }
            
            .image1 {
                top: 80px;
                left: 500px;
                height: 350px;
            }
            
            .slider-text {
                font-size: 45px;
            }
            
            .mission-text {
                font-size: 2.5rem;
            }
            
            .values-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .cta-heading {
                font-size: 3.5rem;
            }
            
            .img-section {
                padding: 6rem 2rem;
            }
            
            .header {
                padding: 0.8rem 1.5rem;
            }
            
            .logo {
                font-size: 1.1rem;
            }
            
            .nav {
                gap: 1.2rem;
            }
        }
        
        /* Mobile Landscape */
        @media (max-width: 768px) {
            .hero {
                height: 400px;
            }
            
            .hero-title {
                font-size: 4rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
                margin-left: 0;
            }
            
            .section-title {
                font-size: 2.5rem;
                margin-bottom: 2.5rem;
            }
            
            .about-section {
                padding: 4rem 1.5rem;
                margin-top: 50px;
            }
            
            /* Main section tablet styles */
            .main {
                padding: 40px 20px;
                height: auto;
                min-height: 70vh;
            }
            
            .filled-text, .outline-text {
                font-size: 4rem;
                top: 150px;
                left: 50px;
            }
            
            .image1 {
                top: 100px;
                left: 400px;
                height: 300px;
            }
            
            .slider-text {
                font-size: 40px;
            }
            
            .mission-section {
                padding: 4rem 1.5rem;
            }
            
            .mission-text {
                font-size: 2rem;
            }
            
            .mission-subtext {
                font-size: 0.9rem;
            }
            
            .values-section {
                padding: 4rem 1.5rem;
            }
            
            .cta-section {
                padding: 4rem 1.5rem;
            }
            
            .cta-subtitle {
                font-size: 2rem;
                width: 100%;
                line-height: 1.3;
                margin-left: 0;
            }
            
            .img-section {
                padding: 4rem 1.5rem;
                width: 95%;
            }
            
            .cta-content {
                padding-left: 1rem;
                padding-top: 1rem;
            }
            
            .cta-heading {
                font-size: 3rem;
                margin-bottom: 2rem;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
            
            .header {
                padding: 0.8rem 1rem;
            }
            
            .logo {
                font-size: 1rem;
            }
            
            .nav.active {
                padding: 1.5rem 0;
            }
        }
        
        /* Mobile Portrait */
        @media (max-width: 576px) {
            .hero {
                height: 350px;
            }
            
            .hero-content {
                bottom: 15%;
                left: 5%;
            }
            
            .hero-title {
                font-size: 3rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .section-title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }
            
            .about-section {
                padding: 3rem 1rem;
            }
            
            .stats-container {
                gap: 2rem;
                display: flex;
                align-items: center;
            }
            
            .stat-item {
                align-items: center;
            }
            
            /* Main section mobile styles */
            .main {
                padding: 20px 10px;
                height: auto;
                min-height: 60vh;
            }
            
            .filled-text, .outline-text {
                position: relative;
                top: auto;
                left: auto;
                font-size: 2.5rem;
                text-align: center;
                margin: 1rem 0;
            }
            
            .image1 {
                position: relative;
                top: auto;
                left: auto;
                width: 100%;
                max-width: 300px;
                height: auto;
                margin: 2rem auto;
                display: block;
            }
            
            .slider-text {
                font-size: 30px;
            }
            
            .mission-section {
                padding: 3rem 1rem;
            }
            
            .mission-text {
                font-size: 1.5rem;
            }
            
            .mission-subtext {
                font-size: 0.8rem;
            }
            
            .values-section {
                padding: 3rem 1rem;
            }
            
            .values-title {
                font-size: 2rem;
                margin-bottom: 2rem;
            }
            
            .cta-section {
                padding: 3rem 1rem;
            }
            
            .cta-subtitle {
                font-size: 1.5rem;
            }
            
            .img-section {
                padding: 3rem 1rem;
            }
            
            .cta-content {
                padding-left: 0.5rem;
            }
            
            .cta-heading {
                font-size: 2.5rem;
                margin-bottom: 1.5rem;
            }
            
            .cta-button {
                padding: 0.6rem 1.4rem;
                font-size: 0.9rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            
            .header {
                padding: 0.7rem 1rem;
            }
            
            .logo::before {
                width: 16px;
                height: 16px;
            }
            
            .mobile-menu-toggle {
                width: 25px;
                height: 18px;
            }
        }
        
        /* Small Mobile */
        @media (max-width: 375px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            /* Main section small mobile styles */
            .main {
                padding: 15px 5px;
                height: auto;
                min-height: 50vh;
            }
            
            .filled-text, .outline-text {
                font-size: 2rem;
                margin: 0.5rem 0;
            }
            
            .image1 {
                max-width: 250px;
                margin: 1rem auto;
            }
            
            .slider-text {
                font-size: 25px;
            }
            
            .mission-text {
                font-size: 1.3rem;
            }
            
            .cta-heading {
                font-size: 2rem;
            }
            
            .header {
                padding: 0.6rem 0.8rem;
            }
            
            .logo {
                font-size: 0.9rem;
            }
        }




/* Main section stays as you already have */
.main {
    padding: 60px;
    height: 100vh;
    position: relative;
    width: 100%;
    overflow: hidden; /* Prevents scroll from long text */
}

.container h2 {
    text-align: center;
    font-size: 100px;
    padding: 80px;
}
.container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.filled-text {
    position: absolute;
    top: 200px;
    left: 100px;
    z-index: 1;
    font-size: 100px;
    font-weight: 600;
}

.outline-text {
    position: absolute;
    top: 200px;
    left: 100px;
    z-index: 3;
    font-size: 100px;
    font-weight: 600;
    -webkit-text-stroke-width: 4px;
    -webkit-text-stroke-color: ghostwhite;
    color: transparent;
}

.image1 {
    position: absolute;
    top: 50px;
    left: 600px;
    z-index: 2;
    border-radius: 20px;
    height: 400px;
    width: auto;
}

/* Slider Text Common */
.slider-text {
    position: absolute;
    white-space: nowrap;
    font-size: 60px;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.1); /* Instead of opacity */
    animation: slide-left 30s linear infinite;
    pointer-events: none; /* Not clickable */
}

.top-slider {
    top: 100px;
}
.star {
   color: transparent;
    -webkit-text-stroke: 1px #000; /* Full opacity outline */
    font-weight: bold;
    font-size: 0.8em; /* Adjust size relative to text */
    vertical-align: middle; /* Align with text center */
    line-height: 1; /* Prevent extra spacing */
    display: inline-block; /* Ensures proper alignment control */
}
.bottom-slider {
    bottom: 0;
}
.image_slider_container{
    margin-top: 100px;
}

/* Additional responsive styles for main section */
@media (max-width: 480px) {
    .main {
        padding: 10px;
        height: auto;
        min-height: 40vh;
    }
    
    .container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: auto;
    }
    
    .filled-text, .outline-text {
        position: static;
        font-size: 1.8rem;
        margin: 1rem 0;
        text-align: center;
    }
    
    .image1 {
        position: static;
        width: 90%;
        max-width: 280px;
        height: auto;
        margin: 1.5rem auto;
        display: block;
    }
    
    .slider-text {
        font-size: 20px;
    }
    
    .image_slider_container {
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
/* Sliding Animation */
@keyframes slide-left {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Make two spans so text loops seamlessly */
.slider-text span {
    display: inline-block;
    padding-right: 100px;
}


@media (max-width: 768px) {
    .main {
      display: none;
    }
  }
   /* ============ FIRST SECTION (Your Achievements) ============ */
    .stars {
        display: flex;
        gap: 15px;
        margin-bottom: 30px;
    }
    .star svg {
        width: 60px;
        height: 60px;
        fill: gold;
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
        animation: shine 0.6s forwards;
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
    }
    @keyframes shine {
        0%   { opacity: 0; transform: scale(0.5) rotate(0deg); }
        50%  { opacity: 1; transform: scale(1.2) rotate(20deg); }
        100% { opacity: 1; transform: scale(1) rotate(0deg); }
    }
/* ===================== FIRST SECTION (Your Achievements) ===================== */

/* Stars */
.stars {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}
.star svg {
    width: 60px;
    height: 60px;
    fill: gold;
    opacity: 0;
    transform: scale(0.5) rotate(0deg);
    animation: shine 0.6s forwards;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.7));
}
@keyframes shine {
    0%   { opacity: 0; transform: scale(0.5) rotate(0deg); }
    50%  { opacity: 1; transform: scale(1.2) rotate(20deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* Achievement Card */
.achievement-card {
    width: 80%;
    max-width: 900px;
    background: linear-gradient(145deg, #ececec, #ffffff);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 50px;
    text-align: center;
    transform: translateY(200px);
    opacity: 0;
    animation: slideUp 1s forwards ease-out;
    animation-delay: 1.5s;
    position: relative;
    overflow: hidden;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    perspective: 1000px;
}
.achievement-card:hover {
    transform: rotateY(10deg) rotateX(5deg) scale(1.05);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}
@keyframes slideUp {
    0% { transform: translateY(200px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* Card shine effect */
.achievement-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6);
    transform: skewX(-20deg);
    animation: shineCard 2s infinite;
}
@keyframes shineCard {
    0% { left: -100%; }
    50% { left: 120%; }
    100% { left: 120%; }
}

/* Heading */
.animated-heading {
    font-size: 56px;
    font-weight: bold;
    color: #848484;
    display: inline-block;
    font-family: "CustomFont", serif;
    margin-bottom: 20px;
}
.animated-heading span {
    display: inline-block;
    opacity: 0;
}
@keyframes letterInLeft {
    0% { transform: translateX(-80px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}
@keyframes letterInRight {
    0% { transform: translateX(80px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

/* Paragraph */
.achievement-card p {
    font-size: 20px;
    line-height: 1.6;
    color: #333;
    margin-top: 20px;
}

/* Floating icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.floating-icons img {
    position: absolute;
    width: 60px;
    height: auto;
}
.floating-icons img:nth-child(1) { top: 10%; left: 15%; animation-delay: 0s; }
.floating-icons img:nth-child(2) { top: 40%; left: 80%; animation-delay: 2s; }
.floating-icons img:nth-child(3) { top: 70%; left: 30%; animation-delay: 4s; }

@keyframes floaty {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* Section */
.section1 {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
}
/* Tablet view */
@media screen and (max-width: 992px) {
    .floating-icons {
      position: relative; /* icon moves above card */
      height: auto;
      margin-bottom: 20px; /* space between icon and heading */
    }

    .floating-icons img {
      position: relative;
      width: 60px;
      height: auto;
      margin: 0 auto;
      display: block;
    }

    .achievement-card {
      padding: 30px;
    }

    .animated-heading {
      font-size: 42px;
      margin-top: 20px; /* heading below icon */
    }

    .achievement-card p {
      font-size: 1rem;
      line-height: 1.5;
      margin-top: 15px;
    }
}

/* Mobile view */
@media screen and (max-width: 600px) {
    .floating-icons {
      display: none; /* hide icon on mobile */
    }

    .achievement-card {
      padding: 20px;
    }

    .animated-heading {
      font-size: 28px;
      margin-top: 15px;
    }

    .achievement-card p {
      font-size: 0.9rem;
      line-height: 1.4;
      margin-top: 10px;
    }
}
