      :root {
      --primary-blue: #2563EB;
      --secondary-blue: #3B82F6;
      --dark-blue: #1E40AF;
      --white: #FFFFFF;
      --light-gray: #F8FAFC;
      --accent: #60A5FA;
      --dark: #1F2937;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    body {
      background-color: var(--white);
      color: var(--dark);
      overflow-x: hidden;
      line-height: 1.7;
    }

       

        .cta-button {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 0.7rem 1.5rem;
            border-radius: 5px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background-color: var(--dark-blue);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
            display: flex;
            align-items: center;
            padding: 0 5%;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><circle cx="20" cy="20" r="1" fill="%232563EB" opacity="0.3"/><circle cx="80" cy="20" r="1" fill="%232563EB" opacity="0.3"/><circle cx="50" cy="50" r="1" fill="%232563EB" opacity="0.3"/><circle cx="10" cy="80" r="1" fill="%232563EB" opacity="0.3"/><circle cx="70" cy="70" r="1" fill="%232563EB" opacity="0.3"/><circle cx="90" cy="40" r="1" fill="%232563EB" opacity="0.3"/></svg>');
            background-size: 2px 2px;
            opacity: 0.1;
            z-index: 0;
            animation: float 15s infinite ease-in-out;
        }

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

        .hero-content {
            max-width: 600px;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            color: var(--dark-blue);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 2rem;
            line-height: 1.6;
        }

        .hero-image {
            position: absolute;
            right: 5%;
            width: 40%;
            max-width: 600px;
            animation: float 6s infinite ease-in-out;
        }

        /* About Us Page */
        .about-page {
            padding: 8rem 5% 5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark-blue);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background: var(--primary-blue);
            bottom: -10px;
            left: 25%;
        }

        .section-title p {
            color: #666;
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        .about-section {
            display: flex;
            align-items: center;
            gap: 4rem;
            margin-bottom: 5rem;
        }

        .about-text {
            flex: 1;
        }

        .about-text h3 {
            font-size: 1.8rem;
            color: var(--dark-blue);
            margin-bottom: 1.5rem;
        }

        .about-text p {
            color: #555;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .about-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.5s ease;
        }

        .about-image:hover {
            transform: scale(1.03);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 4rem 0;
        }

        .service-card {
            background: var(--white);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(37, 99, 235, 0.1);
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(37, 99, 235, 0.1);
            border-color: rgba(37, 99, 235, 0.2);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 1.5rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            color: var(--dark-blue);
            margin-bottom: 1rem;
        }

        .service-card p {
            color: #666;
            line-height: 1.6;
        }

        /* Quote Section */
        .quote-section {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            padding: 5rem;
            border-radius: 10px;
            color: var(--white);
            text-align: center;
            margin: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .quote-section::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .quote-section::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .quote-section p {
            font-size: 1.5rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            position: relative;
            z-index: 1;
        }


        .pulse-button {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }
            70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 99, 235, 0); }
            100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
        }

       
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 2rem 0;
        }

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

        .social-icons a:hover {
            color: var(--secondary-blue);
            transform: translateY(-3px);
        }

        .copyright {
            margin-top: 2rem;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }

            .about-section {
                flex-direction: column;
            }

            .hero-image {
                position: relative;
                right: auto;
                width: 100%;
                margin-top: 3rem;
            }
        }

        @media (max-width: 768px) {

            .hero {
                padding-top: 6rem;
                text-align: center;
            }

            .hero-content {
                margin: 0 auto;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .quote-section {
                padding: 3rem 1.5rem;
            }

            .quote-section p {
                font-size: 1.2rem;
            }
        }

        footer {
        background: black;
        color: #fff;
        padding: 40px 0 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        position: relative;
        overflow: hidden;
        width: 100%; /* Add this to ensure full width */
    }



    .timeline-container {
            position: relative;
            padding-left: 120px; /* Increased for very large markers */
        }

        /* Vertical line - made thicker to match big icons */
        .timeline-line {
            position: absolute;
            left: 60px; /* Centered with large markers */
            top: 0;
            bottom: 0;
            width: 4px; /* Thicker line */
            background-color: #e0e0e0;
            z-index: 1;
        }

        .timeline-item {
            position: relative;
            margin-bottom: 40px;
            z-index: 2;
        }

        /* VERY LARGE Year marker */
        .timeline-marker {
            position: absolute;
            left: -100px; /* Position for very large circle */
            top: 0;
            width: 100px; /* Very large diameter */
            height: 100px; /* Very large diameter */
            border-radius: 50%;
            background-color: #1e88e5;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px; /* Very large text */
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
            border: 5px solid white; /* White border for emphasis */
        }

        /* Content card - larger padding */
        .timeline-content {
            background-color: white;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-left: 6px solid #1e88e5;
            margin-left: 20px;
        }

        /* Extra large headings */
        .timeline-title {
            font-size: 2.2rem; /* Very large heading */
            font-weight: 700;
            color: #1e88e5;
            margin-bottom: 15px;
        }

        .timeline-description {
            color: #555555;
            margin-bottom: 10px;
            font-size: 1.1rem; /* Larger description */
            line-height: 1.8;
        }

        /* Divider line - thicker */
        .timeline-divider {
            border-top: 2px dashed #cccccc;
            margin: 40px 0;
            position: relative;
            left: -60px;
            width: calc(100% + 120px);
        }

        /* Year tags inside content - extra large */
        .year-tag {
            display: inline-block;
            background-color: #1e88e5;
            color: white;
            padding: 12px 20px;
            border-radius: 30px;
            font-size: 1.3rem;
            font-weight: 600;
            margin-right: 15px;
            margin-bottom: 10px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
        }

        /* Responsive adjustments for large elements */
        @media (max-width: 768px) {
            .timeline-container {
                padding-left: 90px;
            }
            .timeline-marker {
                left: -70px;
                width: 70px;
                height: 70px;
                font-size: 24px;
                border-width: 3px;
            }
            .timeline-line {
                left: 35px;
                width: 3px;
            }
            .timeline-content {
                padding: 25px;
            }
            .timeline-title {
                font-size: 1.8rem;
            }
            .year-tag {
                font-size: 1.1rem;
                padding: 10px 16px;
            }
        }

        @media (max-width: 480px) {
            .timeline-container {
                padding-left: 70px;
            }
            .timeline-marker {
                left: -50px;
                width: 50px;
                height: 50px;
                font-size: 18px;
            }
            .timeline-title {
                font-size: 1.5rem;
            }
        }



         .hero {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      padding: 80px 20px;
      text-align: center;
      clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
      margin-bottom: 60px;
    }
    
    .hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      font-weight: 700;
      animation: fadeInUp 1s ease;
    }
    
    .hero p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 30px;
      opacity: 0.9;
      animation: fadeInUp 1s ease 0.2s forwards;
      opacity: 0;
    }
    
    .cta-button {
      display: inline-block;
      background-color: var(--accent);
      color: var(--dark);
      padding: 15px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      animation: fadeInUp 1s ease 0.4s forwards;
      opacity: 0;
    }
    
    .cta-button:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.2);
      background-color: white;
    }
    
    .container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .stats-section {
      padding: 60px 0;
    }
    
    .section-title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 60px;
      color: var(--dark);
      position: relative;
    }
    
    .section-title:after {
      content: '';
      display: block;
      width: 80px;
      height: 5px;
      background: var(--accent);
      margin: 15px auto 0;
      border-radius: 5px;
    }
    
    .bar-container {
      margin-bottom: 40px;
      opacity: 0;
      transform: translateX(-20px);
      transition: all 0.6s ease;
    }
    
    .bar-container.visible {
      opacity: 1;
      transform: translateX(0);
    }
    
    .label {
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
      font-weight: 600;
      color: var(--dark);
    }
    
    .percentage {
      color: var(--primary);
    }
    
    .progress-bar-bg {
      width: 100%;
      background-color: #e9ecef;
      border-radius: 50px;
      overflow: hidden;
      height: 20px;
      box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
    }
    
    .progress-bar-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      border-radius: 50px;
      position: relative;
      width: 0;
      transition: width 1.5s ease-out;
    }
    
    .progress-bar-fill:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.1) 100%
      );
      animation: shimmer 2s infinite;
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes shimmer {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(100%);
      }
    }
    
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 60px;
    }
    
    .feature-card {
      background: white;
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      text-align: center;
      opacity: 0;
      transform: translateY(20px);
    }
    
    .feature-card.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }
    
    .feature-icon {
      font-size: 3rem;
      color: var(--primary);
      margin-bottom: 20px;
    }
    
    .feature-title {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: var(--dark);
    }
    
    
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .hero {
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
      }
    }


    .hero {
      color: var(--white);
      padding: 80px 20px;
      text-align: center;
      clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
      margin-bottom: 60px;
    }
    
    .hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      font-weight: 700;
      animation: fadeInUp 1s ease;
    }
    
    .hero p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 30px;
      opacity: 0.9;
      animation: fadeInUp 1s ease 0.2s forwards;
      opacity: 0;
    }
    
    .cta-button {
      display: inline-block;
      background-color: var(--accent);
      color: var(--white);
      padding: 15px 40px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      animation: fadeInUp 1s ease 0.4s forwards;
      opacity: 0;
    }
    
    .cta-button:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.2);
      background-color: var(--white);
      color: var(--dark-blue);
    }
    
    .container {
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .stats-section {
      padding: 60px 0;
    }
    
    .section-title {
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 60px;
      color: var(--dark);
      position: relative;
    }
    
    .section-title:after {
      content: '';
      display: block;
      width: 80px;
      height: 5px;
      background: var(--accent);
      margin: 15px auto 0;
      border-radius: 5px;
    }
    
    .bar-container {
      margin-bottom: 40px;
      opacity: 0;
      transform: translateX(-20px);
      transition: all 0.6s ease;
    }
    
    .bar-container.visible {
      opacity: 1;
      transform: translateX(0);
    }
    
    .label {
      display: flex;
      justify-content: space-between;
      margin-bottom: 10px;
      font-weight: 600;
      color: var(--dark);
    }
    
    .percentage {
      color: var(--primary-blue);
    }
    
    .progress-bar-bg {
      width: 100%;
      background-color: #e9ecef;
      border-radius: 50px;
      overflow: hidden;
      height: 20px;
      box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
    }
    
    .progress-bar-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--primary-blue), var(--accent));
      border-radius: 50px;
      position: relative;
      width: 0;
      transition: width 1.5s ease-out;
    }
    
    .progress-bar-fill::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0.1) 100%
      );
      animation: shimmer 2s infinite;
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes shimmer {
      0% {
        transform: translateX(-100%);
      }
      100% {
        transform: translateX(100%);
      }
    }
    
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 60px;
    }
    
    .feature-card {
      background: var(--white);
      border-radius: 15px;
      padding: 30px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      text-align: center;
      opacity: 0;
      transform: translateY(20px);
    }
    
    .feature-card.visible {
      opacity: 1;
      transform: translateY(0);
    }
    
    .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }
    
    .feature-icon {
      font-size: 3rem;
      color: var(--primary-blue);
      margin-bottom: 20px;
    }
    
    .feature-title {
      font-size: 1.5rem;
      margin-bottom: 15px;
      color: var(--dark);
    }
    
    footer {
      background: var(--dark);
      color: var(--white);
      text-align: center;
      padding: 30px 0;
      margin-top: 80px;
    }
    
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .hero {
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
      }
    }