/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e6e6e6;
    background-color: #1a1a1a;
    overflow-x: hidden;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #333333;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.nav-logo-link {
    text-decoration: none;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo-subtext {
    font-size: 0.9rem;
    font-weight: 400;
    color: #999999;
    margin-top: -5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #793131;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, #666666);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.cta-button {
    background: linear-gradient(135deg, #333333, #1a1a1a);
    color: #ffffff !important;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid #444444;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #444444, #2d2d2d);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cta-button::after {
    display: none;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: black;
    position: relative;
    padding-top: 80px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 80px);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: black;
    padding: 1rem;
}

.hero-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 15px;
    filter: grayscale(20%) contrast(1.1);
    transition: all 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.3) 100%);
    border-radius: 15px;
    pointer-events: none;
}

/* Hero Content */
.hero-content {
    padding: 2rem 0;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #333333, #404040);
    border: 1px solid #555555;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    margin-bottom: 2rem;
}

.badge-text {
    color: #cccccc;
    font-size: 3.9rem;
    font-weight: 500;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #ffffff;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-name {
    margin: 2rem 0;
}

.name-text {
    font-size: 5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -2px;
    opacity: 0.8;
    display: block;
}

.hero-description {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 500px;
    text-align: justify;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff, #e6e6e6);
    color: #1a1a1a;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #f5f5f5, #cccccc);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #666666;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #333333, #404040);
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-social {
    display: flex;
    gap: 2rem;
}

.social-item {
    text-align: center;
}

.social-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.social-label {
    font-size: 0.9rem;
    color: #999999;
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.scroll-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, #666666, transparent);
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Responsive Design */

/* Large Laptops and Desktops */
@media screen and (max-width: 1199px) {
    .hero-container {
        max-width: 1100px;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .name-text {
        font-size: 4rem;
    }
}

/* Tablets and Small Laptops */
@media screen and (max-width: 991px) {
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-logo{
      height: 40px;
      width: 70px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-img {
        height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .name-text {
        font-size: 3.5rem;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .hero-social {
        justify-content: center;
    }
}

/* Large Mobile Devices */
@media screen and (max-width: 767px) {
    .nav-toggle {
        display: flex;
        background: black;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
        justify-content: flex-start;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        padding: 1rem;
        font-size: 1.1rem;
        display: block;
    }
    
    .hero-container {
        gap: 2rem;
        padding: 1.5rem 1rem;
    }
    
    .hero-img {
        height: 400px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .name-text {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 2rem;
        margin-left: 25px;
    }
    
    .hero-social {
        gap: 1.5rem;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 575px) {
    .nav-container {
        padding: 0 1rem;
        height: 95px;
    }

    .nav-logo{
      height: 80px !important;
      width: 70px !important;
    }
    
    .hero-section {
        padding-top: 70px;
    }
    
    .nav-menu {
        top: 90px;
        height: calc(100vh - 70px);
        background-color: white
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .logo-subtext {
        font-size: 0.8rem;
    }
    
    .hero-container {
        min-height: calc(100vh - 70px);
        padding: 1rem;
    }
    
    .image-wrapper {
        padding: 0.5rem;
    }
    
    .hero-img {
        height: 350px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .name-text {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .social-number {
        font-size: 1.2rem;
    }
    
    .social-label {
        font-size: 0.8rem;
    }
}

/* Mobile Menu Animation */
.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}






/* About Us Section - Same as before but with animation additions */
.about-section {
    padding: 120px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="%23ffffff" opacity="0.02"/><circle cx="80" cy="40" r="0.3" fill="%23ffffff" opacity="0.02"/><circle cx="40" cy="80" r="0.4" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Animation Keyframes */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes progressBar {
    from {
        width: 0%;
    }
    to {
        width: var(--target-width);
    }
}

/* Animation Classes */
.animate-fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-left {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.header-badge {
    display: inline-block;
    background: linear-gradient(135deg, #333333, #404040);
    border: 1px solid #555555;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 2rem;
    animation: scaleUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* About Content Grid */
.about-content-grid {
    display: grid;
    gap: 5rem;
}

/* Story Section */
.about-story {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content {
    padding: 2rem 0;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 2rem;
    position: relative;
}

.story-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, #666666);
}

.story-text {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.story-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #333333, #2d2d2d);
    border-radius: 15px;
    border: 1px solid #444444;
    animation: scaleUp 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both;
}

.highlight-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.highlight-text {
    color: #cccccc;
    font-weight: 500;
}

.story-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #333333, #1a1a1a);
    padding: 1rem;
}

.story-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    filter: grayscale(30%) contrast(1.1);
    transition: all 0.3s ease;
}

.story-img:hover {
    filter: grayscale(10%) contrast(1.2);
    transform: scale(1.02);
}

/* Mission & Vision */
.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.mission-card,
.vision-card {
    padding: 3rem;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-radius: 20px;
    border: 1px solid #404040;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #555555;
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #444444, #333333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    animation: scaleUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.card-text {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Values Section */
.values-section {
    margin: 3rem 0;
}

.values-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.values-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, #666666);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-item {
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #333333, #2d2d2d);
    border-radius: 15px;
    border: 1px solid #444444;
    text-align: center;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    border-color: #666666;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #555555, #404040);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    animation: scaleUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.value-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.value-desc {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.5;
}

/* Stats Section with Animation */
.stats-section {
    margin: 30rem 0 0 0;
    padding: 3rem;
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border-radius: 20px;
    border: 1px solid #404040;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    display: block;
    color: #cccccc;
    font-weight: 500;
    margin-bottom: 1rem;
}

.stat-bar {
    width: 100%;
    height: 4px;
    background: #404040;
    border-radius: 2px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, #ffffff, #cccccc);
    border-radius: 2px;
    width: 0%;
    transition: width 2s ease-in-out;
}

/* About CTA */
.about-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #333333, #2d2d2d);
    border-radius: 25px;
    border: 1px solid #444444;
    margin-top: 3rem;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* All responsive styles remain the same as before */
/* ... (same responsive CSS as previous version) ... */


/* Responsive Design for About Section */

/* Large Laptops and Desktops */
@media screen and (max-width: 1199px) {
    .about-container {
        max-width: 1100px;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .story-title, .values-title, .cta-title {
        font-size: 2.2rem;
    }
}

/* Tablets and Small Laptops */
@media screen and (max-width: 991px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-container {
        padding: 0 1.5rem;
    }
    
    .section-header {
        margin-bottom: 4rem;
    }
    
    .about-story {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .story-image {
        order: 1;
    }
    
    .story-content {
        order: 2;
    }
    
    .story-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .story-img {
        height: 350px;
    }
}

/* Large Mobile Devices */
@media screen and (max-width: 767px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-container {
        padding: 0 1rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .about-content-grid {
        gap: 3rem;
    }
    
    .story-title, .values-title, .cta-title {
        font-size: 1.8rem;
    }
    
    .story-img {
        height: 300px;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-cta {
        padding: 3rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 575px) {
    .about-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .story-title, .values-title, .cta-title {
        font-size: 1.6rem;
    }
    
    .story-text, .card-text {
        font-size: 1rem;
    }
    
    .story-img {
        height: 250px;
    }
    
    .mission-card,
    .vision-card {
        padding: 1.5rem;
    }
    
    .value-item {
        padding: 2rem 1.5rem;
    }
    
    .stats-section {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-cta {
        padding: 2.5rem 1rem;
    }
}










/* Services Section */
.services-section {
    padding: 120px 0;
    background: black;
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Floating Animation Keyframes */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(2deg);
    }
    66% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

@keyframes floatReverse {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(15px) rotate(-2deg);
    }
    66% {
        transform: translateY(8px) rotate(1deg);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-float:nth-child(even) {
    animation: floatReverse 7s ease-in-out infinite;
    animation-delay: -2s;
}

/* Process Flow */
.process-flow {
    position: relative;
    padding: 5rem 0;
    margin: 4rem 0;
}

.process-card {
    position: absolute;
    background: linear-gradient(135deg, #333333, #2d2d2d);
    border: 1px solid #444444;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    width: 280px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.process-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #666666;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

/* Card Positions */
.define-card {
    top: 0;
    right: 10%;
}

.design-card {
    top: 120px;
    left: 5%;
}

.build-card {
    top: 240px;
    right: 15%;
    margin-top: 150px;
    margin-right: -50px;
}

.launch-card {
    top: 360px;
    left: 10%;
    margin-top: 150px;
}

.card-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ffffff, #e6e6e6);
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9rem;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #555555, #404040);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.card-description {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Card Connectors */
.card-connector {
    position: absolute;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #666666, transparent);
    top: 50%;
    transform: translateY(-50%);
}

.define-card .card-connector {
    left: -80px;
    transform: translateY(-50%) rotate(-45deg);
}

.design-card .card-connector {
    right: -80px;
    transform: translateY(-50%) rotate(45deg);
}

.build-card .card-connector {
    left: -80px;
    transform: translateY(-50%) rotate(-45deg);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, #555555, #404040);
    opacity: 0.6;
}

.element-1 {
    width: 8px;
    height: 8px;
    top: 50px;
    left: 20%;
    animation: float 8s ease-in-out infinite;
}

.element-2 {
    width: 12px;
    height: 12px;
    top: 200px;
    right: 25%;
    animation: floatReverse 10s ease-in-out infinite;
    animation-delay: -3s;
}

.element-3 {
    width: 6px;
    height: 6px;
    top: 350px;
    left: 60%;
    animation: float 9s ease-in-out infinite;
    animation-delay: -1s;
}

.element-4 {
    width: 10px;
    height: 10px;
    top: 450px;
    right: 40%;
    animation: floatReverse 7s ease-in-out infinite;
    animation-delay: -4s;
}

/* Services Grid Section */
.services-grid-section {
    margin-top: 8rem;
    padding-top: 4rem;
}

.services-grid-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.services-grid-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ffffff, #666666);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-item {
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, #333333, #2d2d2d);
    border: 1px solid #444444;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    transform: translateY(-10px);
    border-color: #666666;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #555555, #404040);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #666666, #555555);
}

.service-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.service-description {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
}

/* Services CTA */
.services-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6rem;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #333333, #2d2d2d);
    border: 1px solid #444444;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(255, 255, 255, 0.03) 60deg, transparent 120deg);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    max-width: 400px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.cta-arrow {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffffff, #e6e6e6);
    color: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design for Services Section */

/* Large Laptops and Desktops */
@media screen and (max-width: 1199px) {
    .services-container {
        max-width: 1100px;
    }
    
    .process-card {
        width: 260px;
        padding: 2rem 1.5rem;
    }
}

/* Tablets and Small Laptops */
@media screen and (max-width: 991px) {
    .services-section {
        padding: 80px 0;
    }
    
    .process-flow {
        padding: 3rem 0;
        height: auto;
        position: relative;
    }
    
    .process-card {
        position: relative;
        width: 100%;
        max-width: 400px;
        margin: 2rem auto;
        display: block;
        animation: none !important;
    }
    
    .define-card, .design-card, .build-card, .launch-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
    }
    
    .card-connector {
        display: none;
    }
    
    .floating-element {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .services-cta {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
}

/* Large Mobile Devices */
@media screen and (max-width: 767px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .process-card {
        padding: 2rem 1.5rem;
    }

    .services-grid-section{
        margin-top: -120px !important;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        
    }
    
    .service-item {
        padding: 2.5rem 2rem;
    }
    
    .services-grid-title {
        font-size: 2rem;
    }
    
    .services-cta {
        padding: 3rem 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 575px) {
    .services-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .services-grid-title {
        font-size: 1.8rem;
    }
    
    .process-card {
        padding: 1.5rem;
        margin: 1.5rem auto;
    }
    
    .card-title {
        font-size: 1.3rem;
    }
    
    .service-item {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .services-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-arrow {
        width: 60px;
        height: 60px;
    }
}












/* Courses Section */
.courses-section {
    padding: 120px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.courses-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.header-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
    border: 1px solid #4a4a4a;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 2rem;
}

.badge-text {
    color: #bbbbbb;
    font-weight: 500;
    font-size: 0.9rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 2.5rem;
    margin-top: 3rem;
}

/* Course 4 spans full width on second row */
.course-4 {
    grid-column: 1 / -1;
    max-width: 900px;
    margin: 0 auto;
}

/* Course Cards */
.course-card {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border: 1px solid #404040;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: #666666;
}

/* Popular Course Styling */
.popular {
    background: linear-gradient(135deg, #3a3a3a, #2a2a2a);
    border-color: #555555;
    transform: scale(1.05);
}

.popular:hover {
    transform: scale(1.08) translateY(-10px);
    border-color: #777777;
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    color: #1a1a1a;
    padding: 0.5rem 1.5rem;
    border-radius: 0 0 15px 15px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Combo Course Styling */
.combo {
    background: linear-gradient(135deg, #333333, #2d2d2d);
    border: 2px solid #555555;
}

.combo-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #e6e6e6, #cccccc);
    color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
}

/* Course Header */
.course-header {
    margin-bottom: 2rem;
}

.course-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.course-subtitle {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.5;
}

/* Combo Description */
.combo-description {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #333333, #2a2a2a);
    border-radius: 10px;
    border-left: 3px solid #ffffff;
}

.combo-description p {
    color: #cccccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Course Features */
.course-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #cccccc;
    font-size: 0.95rem;
}

.feature-item svg {
    color: #ffffff;
    flex-shrink: 0;
}

.popular .feature-item svg {
    color: #e6e6e6;
}

/* Course Price */
.course-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
}

.duration {
    font-size: 1.1rem;
    color: #999999;
    font-weight: 500;
}

.combo-price .price {
    font-size: 3rem;
    color: #ffffff;
}

/* Course Buttons */
.course-btn {
    display: block;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ffffff, #e6e6e6);
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 30px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.course-btn:hover {
    background: linear-gradient(135deg, #f0f0f0, #cccccc);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.popular-btn {
    background: linear-gradient(135deg, #1a1a1a, #333333);
    color: #ffffff;
}

.popular-btn:hover {
    background: linear-gradient(135deg, #333333, #404040);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.combo-btn {
    background: linear-gradient(135deg, #ffffff, #e6e6e6);
    color: #1a1a1a;
    font-size: 1.1rem;
    padding: 1.2rem 2rem;
}

.combo-btn:hover {
    background: linear-gradient(135deg, #f0f0f0, #cccccc);
}

/* Animation Classes */
.animate-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */

/* Large Laptops and Desktops */
@media screen and (max-width: 1199px) {
    .courses-container {
        max-width: 1100px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

/* Tablets and Small Laptops */
@media screen and (max-width: 991px) {
    .courses-section {
        padding: 80px 0;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .course-4 {
        grid-column: 1;
    }
    
    .popular {
        transform: none;
    }
    
    .popular:hover {
        transform: translateY(-10px);
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* Large Mobile Devices */
@media screen and (max-width: 767px) {
    .courses-section {
        padding: 60px 0;
    }
    
    .courses-container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .course-card {
        padding: 2rem;
    }
    
    .course-title {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .combo-price .price {
        font-size: 2.5rem;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 575px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .course-card {
        padding: 1.5rem;
    }
    
    .course-title {
        font-size: 1.2rem;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
    
    .price {
        font-size: 1.8rem;
    }
    
    .combo-price .price {
        font-size: 2.2rem;
    }
}
















section#team {
  width: 100%;
}

.stack-area {
  width: 100%;
  height: 800vh;
  position: relative;
  background: #ffffff;
  display: flex;
}

.left {
  height: 100vh;
  flex-basis: 50%;
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-sizing: border-box;
  padding: 40px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
}

.title {
  width: 420px;
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff, #e6e6e6);
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
  background-clip: text;
}

.sub-title {
  width: 420px;
  font-size: 16px;
  margin-top: 30px;
  color: #cccccc;
}

.sub-title button {
  font-size: 14px;
  padding: 15px 30px;
  background: linear-gradient(135deg, #ffffff, #e6e6e6);
  color: #1a1a1a;
  border-radius: 8mm;
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: 20px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.sub-title button:hover {
  background: linear-gradient(135deg, #e6e6e6, #cccccc);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.right {
  height: 100vh;
  flex-basis: 50%;
  position: sticky;
  top: 0;
  background: white;
}

.card {
  width: 350px;
  height: 490px;
  border-radius: 25px;
  margin-bottom: 10px;
  position: absolute;
  top: calc(50% - 225px);
  left: calc(50% - 175px);
  transition: 0.5s ease-in-out;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trainer-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.sub {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
}

.content {
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #f0f0f0;
}

/* Black and White gradient backgrounds for each card */
.card:nth-child(1) { 
  background: linear-gradient(135deg, #000000, #000000);
}
.card:nth-child(2) { 
  background: linear-gradient(135deg, #000000, #000000);
}
.card:nth-child(3) { 
  background: linear-gradient(135deg, #000000, #000000);
}
.card:nth-child(4) { 
  background: linear-gradient(135deg, #000000, #000000);
}
.card:nth-child(5) { 
  background: linear-gradient(135deg, #000000, #000000);
}
.card:nth-child(6) { 
  background: linear-gradient(135deg, #000000, #000000);
}
.card:nth-child(7) { 
  background: linear-gradient(135deg, #000000, #000000);
}

.away {
  transform: translateY(-120vh) rotate(-48deg);
  transform-origin: bottom left;
}

/* Hover effects for cards */
.card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card:hover .trainer-img {
  border-color: rgba(255, 255, 255, 0.4);
}

/* Responsive adjustments */
@media screen and (max-width: 991px) {
  .stack-area {
    flex-direction: column;
    height: auto;
  }
  
  .left, .right {
    position: relative;
    height: auto;
    flex-basis: auto;
  }
  
  .left {
    padding: 60px 20px;
  }
  
  .title {
    width: 100%;
    font-size: 48px;
    line-height: 56px;
  }
  
  .sub-title {
    width: 100%;
  }
  
  .right {
    padding: 40px 20px;
  }
  
  .card {
    position: relative;
    margin: 20px auto;
    width: 90%;
    max-width: 350px;
  }
}

@media screen and (max-width: 767px) {
  .title {
    font-size: 36px;
    line-height: 42px;
  }
  
  .sub-title {
    font-size: 14px;
  }
  
  .card {
    height: 400px;
    padding: 20px;
  }
  
  .trainer-img {
    height: 150px;
  }
  
  .sub {
    font-size: 18px;
  }
  
  .content {
    font-size: 16px;
    line-height: 22px;
  }
}



/* For large tablets and small laptops (max-width: 1024px) */
@media screen and (max-width: 1024px) {
  .stack-area {
    flex-direction: column;
    height: auto;
  }

  .left, .right {
    position: relative;
    height: auto;
    flex-basis: auto;
    width: 100%;
  }

  .left {
    padding: 60px 30px;
    text-align: center;
  }

  .title {
    width: 100%;
    font-size: 42px;
    line-height: 50px;
  }

  .sub-title {
    width: 100%;
    font-size: 16px;
  }

  .right {
    padding: 40px 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .card {
    position: static;
    width: 90%;
    max-width: 350px;
    margin: 20px auto;
    transform: none !important;
    z-index: 1 !important;
  }

  .away {
    transform: none !important;
  }
}

/* For tablets (max-width: 768px) */
@media screen and (max-width: 768px) {
  .title {
    font-size: 36px;
    line-height: 44px;
  }

  .sub-title {
    font-size: 14px;
  }

  .sub-title button {
    padding: 12px 25px;
    font-size: 13px;
  }

  .card {
    height: auto;
    padding: 20px;
  }

  .trainer-img {
    height: 160px;
  }

  .sub {
    font-size: 18px;
  }

  .content {
    font-size: 15px;
    line-height: 22px;
  }
}

/* For mobile devices (max-width: 480px) */
@media screen and (max-width: 480px) {
  .title {
    font-size: 28px;
    line-height: 36px;
  }

  .sub-title {
    font-size: 13px;
  }

  .sub-title button {
    font-size: 12px;
    padding: 10px 20px;
  }

  .card {
    padding: 18px;
    width: 95%;
  }

  .trainer-img {
    height: 140px;
  }

  .sub {
    font-size: 16px;
  }

  .content {
    font-size: 14px;
    line-height: 20px;
  }
}



      


/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
    background: black;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.header-badge {
    display: inline-block;
    background: linear-gradient(135deg, #333333, #404040);
    border: 1px solid #555555;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 2rem;
}

.badge-text {
    color: #cccccc;
    font-weight: 500;
    font-size: 0.9rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

/* Testimonial Cards */
.testimonial-card {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border: 1px solid #404040;
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.6s ease;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
    border-color: #666666;
}

/* Testimonial Header */
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #666666;
    transition: all 0.3s ease;
}

.testimonial-card:hover .client-image {
    border-color: #999999;
}

.client-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-info {
    flex: 1;
}

.client-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.client-role {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    gap: 0.2rem;
}

.star {
    color: #e6e6e6;
    font-size: 1rem;
}

/* Testimonial Content */
.testimonial-content {
    position: relative;
    margin-bottom: 1.5rem;
}

.quote-icon {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 4rem;
    color: #555555;
    font-weight: 700;
    line-height: 1;
}

.testimonial-text {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.6;
    padding-left: 1rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

/* Testimonial Footer */
.testimonial-footer {
    padding-top: 1rem;
    border-top: 1px solid #444444;
}

.course-taken {
    display: inline-block;
    background: linear-gradient(135deg, #555555, #333333);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Card Variations */
.card-1:hover { border-left: 4px solid #666666; }
.card-2:hover { border-left: 4px solid #777777; }
.card-3:hover { border-left: 4px solid #555555; }
.card-4:hover { border-left: 4px solid #888888; }
.card-5:hover { border-left: 4px solid #999999; }
.card-6:hover { border-left: 4px solid #444444; }

/* Statistics Section */
.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #333333, #2d2d2d);
    border-radius: 25px;
    margin-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.testimonials-stats::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(255, 255, 255, 0.05) 60deg, transparent 120deg);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    color: #cccccc;
    font-size: 1rem;
    font-weight: 500;
}

/* CTA Section */
.testimonials-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #404040, #2d2d2d);
    border: 1px solid #555555;
    border-radius: 25px;
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff, #e6e6e6);
    color: #1a1a1a;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, #f0f0f0, #cccccc);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #666666;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #555555, #333333);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Animation Classes */
.animate-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */

/* Large Laptops and Desktops */
@media screen and (max-width: 1199px) {
    .testimonials-container {
        max-width: 1100px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .testimonials-stats {
        gap: 3rem;
    }
}

/* Tablets and Small Laptops */
@media screen and (max-width: 991px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .testimonials-stats {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .stat-item {
        flex: 1;
        min-width: 120px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Large Mobile Devices */
@media screen and (max-width: 767px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonials-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .testimonials-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 575px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .client-name {
        font-size: 1.1rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
    
    .testimonials-stats {
        gap: 1rem;
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
}







/* Contact Us Section */
.contact-section {
    padding: 120px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.header-badge {
    display: inline-block;
    background: white;
    border: 3px solid #000000;
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 2rem;
}

.badge-text {
    color: #000000;
    font-weight: 500;
    font-size: 2.9rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.title-line {
    display: block;
    /* background: linear-gradient(135deg, #000000, #000000); */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 35px;
    color: white;
}

.section-subtitle {
    font-size: 1.2rem;
    color: black;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

/* Contact Info Side */
.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info-card {
    background: black;
    border: 1px solid #404040;
    border-radius: 20px;
    padding: 2.5rem;
}

.info-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #555555, #404040);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Map Container */
.map-container {
    background: black;
    border: 1px solid #404040;
    border-radius: 20px;
    padding: 2rem;
    overflow: hidden;
}

.map-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-wrapper {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #555555;
}

.map-wrapper iframe {
    border-radius: 15px;
    filter: grayscale(1) contrast(1.2) opacity(0.8);
    transition: all 0.3s ease;
}

.map-wrapper:hover iframe {
    filter: grayscale(0.7) contrast(1.1) opacity(1);
}

/* Contact Form Side */
.contact-form-card {
    background: linear-gradient(135deg, #f8f8f8, #ffffff);
    border: 1px solid #e6e6e6;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    text-align: center;
}

.form-subtitle {
    color: #666666;
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    position: relative;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid #e6e6e6;
    font-size: 1rem;
    color: #1a1a1a;
    transition: all 0.3s ease;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: #333333;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

.form-underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #333333, #1a1a1a);
    transition: width 0.3s ease;
}

.form-group input:focus + .form-underline,
.form-group select:focus + .form-underline,
.form-group textarea:focus + .form-underline {
    width: 100%;
}

/* Checkbox */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.5;
    cursor: pointer;
}

/* Submit Button */
.form-buttons {
    margin-top: 1rem;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #1a1a1a, #333333);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #333333, #404040);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Quick Contact */
.quick-contact {
    background: white;
    border: 1px solid #e6e6e6;
    border-radius: 15px;
    padding: 2rem;
}

.quick-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.quick-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-card:hover {
    background: linear-gradient(135deg, #333333, #1a1a1a);
    color: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quick-icon {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333333;
    transition: all 0.3s ease;
}

.quick-card:hover .quick-icon {
    background: #ffffff;
    color: #333333;
}

.quick-text {
    display: flex;
    flex-direction: column;
}

.quick-text span {
    font-weight: 600;
    color: #333333;
    font-size: 0.9rem;
}

.quick-text small {
    color: #666666;
    font-size: 0.8rem;
}

.quick-card:hover .quick-text span,
.quick-card:hover .quick-text small {
    color: #ffffff;
}

/* Animation Classes */
.animate-slide-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
    color: black;
}

/* Responsive Design */

/* Large Laptops and Desktops */
@media screen and (max-width: 1199px) {
    .contact-container {
        max-width: 1100px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-content {
        gap: 3rem;
    }
}

/* Tablets and Small Laptops */
@media screen and (max-width: 991px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .contact-info-side {
        order: 2;
    }
    
    .contact-form-side {
        order: 1;
    }
}

/* Large Mobile Devices */
@media screen and (max-width: 767px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-content {
        gap: 2rem;
    }
    
    .contact-info-card,
    .contact-form-card,
    .map-container {
        padding: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .quick-cards {
        flex-direction: column;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 575px) {
    .section-title {
        font-size: 1.6rem;
    }
    
    .contact-info-card,
    .contact-form-card,
    .map-container,
    .quick-contact {
        padding: 1.5rem;
    }
    
    .form-title {
        font-size: 1.6rem;
    }
    
    .info-title,
    .map-title {
        font-size: 1.4rem;
    }
    
    .contact-details {
        gap: 1.5rem;
    }
    
    .contact-item {
        gap: 0.75rem;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
    }
}






/* Footer Section */
.footer-section {
    background: black;
    color: #cccccc;
    position: relative;
    overflow: hidden;
    
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="%23ffffff" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Main Footer Content */
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 3rem;
    padding: 4rem 0 3rem 0;
    border-bottom: 1px solid #404040;
}

/* Company Info */
.company-info {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtext {
    font-size: 1rem;
    color: #999999;
    font-weight: 400;
    margin-top: -5px;
    margin-left: 7px;
}

.company-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 2rem;
    text-align: justify;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #333333, #404040);
    border: 1px solid #555555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #ffffff, #e6e6e6);
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.1);
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, #666666);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links li a:hover {
    color: #ffffff;
    padding-left: 10px;
}

.footer-links li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.footer-links li a:hover::before {
    width: 6px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: #cccccc;
}

.contact-item svg {
    color: #999999;
    flex-shrink: 0;
}

/* Newsletter */
.newsletter-column {
    max-width: 280px;
}

.newsletter-text {
    font-size: 0.9rem;
    color: #cccccc;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.newsletter-form {
    width: 100%;
}

.newsletter-input-group {
    display: flex;
    background: linear-gradient(135deg, #333333, #404040);
    border: 1px solid #555555;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
    border-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 0.9rem;
}

.newsletter-input::placeholder {
    color: #999999;
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-btn {
    padding: 1rem;
    background: linear-gradient(135deg, #ffffff, #e6e6e6);
    color: #1a1a1a;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #e6e6e6, #cccccc);
    transform: scale(1.05);
}

/* Footer Bottom */
.footer-bottom {
    padding: 2rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright p {
    margin: 0;
    font-size: 0.9rem;
    color: #999999;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.bottom-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.bottom-link:hover {
    color: #ffffff;
}

/* Back to Top */
.back-to-top-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #333333, #404040);
    color: #cccccc;
    border: 1px solid #555555;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.back-to-top-btn:hover {
    background: linear-gradient(135deg, #ffffff, #e6e6e6);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

/* Responsive Design */

/* Large Laptops and Desktops */
@media screen and (max-width: 1199px) {
    .footer-container {
        max-width: 1100px;
    }
    
    .footer-main {
        gap: 2.5rem;
    }
}

/* Tablets and Small Laptops */
@media screen and (max-width: 991px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .company-info {
        grid-column: 1 / -1;
        max-width: none;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-logo {
        align-items: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-column {
        grid-column: 1 / -1;
        max-width: none;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
}

/* Large Mobile Devices */
@media screen and (max-width: 767px) {
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0 2rem 0;
        text-align: center;
    }
    
    .company-info {
        grid-column: 1;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .newsletter-input-group {
        flex-direction: column;
        border-radius: 15px;
    }
    
    .newsletter-btn {
        border-radius: 0 0 15px 15px;
        padding: 1rem 1.5rem;
    }
    
    .footer-bottom-links {
        gap: 1rem;
    }
    
    .back-to-top-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* Small Mobile Devices */
@media screen and (max-width: 575px) {
    .footer-main {
        padding: 2.5rem 0 1.5rem 0;
        gap: 1.5rem;
    }
    
    .logo-text {
        font-size: 2rem;
    }
    
    .company-description {
        font-size: 0.9rem;
    }
    
    .social-links {
        gap: 0.75rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-links li a,
    .contact-item,
    .newsletter-text,
    .bottom-link {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .copyright p {
        font-size: 0.8rem;
    }
}




/* Popup Form Styles */
.new-popup-form {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 10px;
}

.new-popup-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #000; /* Ensures text inside the popup is black */
}

.new-form-row {
    margin-bottom: 20px;
}

.new-form-group {
    display: flex;
    flex-direction: column;
}

.new-form-group label {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000; /* Black font color for the labels */
}

.new-form-group input,
.new-form-group select,
.new-form-checkbox input,
.new-form-buttons button {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    color: #000; /* Black font color for inputs and selects */
}

.new-form-checkbox {
    display: flex;
    align-items: center;
}

.new-form-checkbox label {
    font-size: 14px;
    margin-left: 10px;
    color: #000; /* Black font color for the checkbox label */
}

.new-submit-btn {
    background-color: black;
    color: white !important;
    cursor: pointer;
    border: none;
    font-size: 16px;
    font-weight: 600;
}

.new-submit-btn:hover {
    background-color: #0056b3;
}

.new-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333; /* Close button color */
}

.new-close-btn:hover {
    color: #ff0000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .new-popup-content {
        width: 90%;
        padding: 15px;
    }

    .new-form-group input,
    .new-form-group select,
    .new-form-checkbox input,
    .new-form-buttons button {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .new-popup-content {
        width: 95%;
    }

    .new-form-group input,
    .new-form-group select,
    .new-form-checkbox input,
    .new-form-buttons button {
        padding: 8px;
    }
}

