
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

   body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      color: #333;
	  background-color: white;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
	


  

    /* Hero Section */
    .about-hero {
      background: linear-gradient(rgba(37, 63, 113, 0.8), rgba(37, 63, 113, 0.8)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1600&q=80');
      background-size: cover;
      background-position: center;
      color: white;
      text-align: center;
      padding: 100px 20px;
    }

    .about-hero h1 {
      font-size: 3rem;
      margin-bottom: 20px;
      color:white;
    }

    .about-hero p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto;
    }

    /* Section Styles */
    .section {
      padding: 40px 0; /* Reduced from 80px */
    }

    .section-title {
      text-align: center;
      font-size: 2.5rem;
      color: #253f71;
      margin-bottom: 10px;
    }

    .section-subtitle {
      text-align: center;
      margin-bottom: 25px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }

    .animate-border {
      display: block;
      width: 80px;
      height: 4px;
      background: #ce6820;
      margin: 0 auto 40px;
      border-radius: 2px;
    }

    /* About Content */
    .about-content {
      display: flex;
      align-items: center;
      gap: 50px;
      margin-bottom: 30px;
    }

    .about-text {
      flex: 1;
    }

  

    .about-text h2 {
      color: #253f71;
      margin-bottom: 20px;
      font-size: 2rem;
    }

    .about-text p {
      margin-top:20px;
      margin-bottom: 20px;
      font-size: 1.1rem;
    }

    .about-image {
      flex: 1;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .about-image img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.5s ease;
    }

    .about-image:hover img {
      transform: scale(1.03);
    }

    /* Mission & Vision */
    .mission-vision {
      background: #f1f5f9;
	  padding: 40px 0; /* Reduced from 80px */
    }

    .mv-container {
      display: flex;
      gap: 20px;
    }

    .mv-card {
      flex: 1;
      background: white;
      padding: 40px;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
      text-align: center;
      transition: all 0.3s ease;
    }

    .mv-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    .mv-icon {
      width: 80px;
      height: 80px;
      background: #253f71;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 2rem;
      margin: 0 auto 20px;
    }

    .mv-card h3 {
      color: #253f71;
      margin-bottom: 15px;
    }



    /* Values */
    .values-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 15px;
    }

    .value-card {
      background: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
      text-align: center;
      transition: all 0.3s ease;
    }

    .value-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    .value-icon {
      color: #253f71;
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .value-card h3 {
      color: #253f71;
      margin-bottom: 15px;
    }

    .value-card p {
    }

    
    /* CTA Section */
    .cta-section {
      background: linear-gradient(to right, #ce6820, #1a2c4e);
      color: white;
      text-align: center;
     padding: 40px 20px; /* Reduced from 80px */
    }

    .cta-section h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }

    .cta-section p {
      max-width: 700px;
      margin: 0 auto 30px;
      font-size: 1.1rem;
    }

    .btn-primary {
      display: inline-block;
      padding: 14px 35px;
      background: #ce6820;
      color: #fff;
      border: none;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(206, 104, 32, 0.3);
    }

    .btn-primary:hover {
      background: #a75017;
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(206, 104, 32, 0.4);
    }

        /* Footer Styles */
    footer {
      background: #1d2856;
      color: white;
      padding: 60px 0 20px;
      border-radius: 12px 12px 0 0;
      overflow: hidden;
      box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    }

    .footer-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
      padding: 0 40px;
      margin-bottom: 50px;
    }

    .footer-column {
      flex: 1;
      min-width: 200px;
    }

    .footer-column h3 {
      color: #E76A35;
      margin-bottom: 20px;
      font-size: 1.3rem;
      position: relative;
      padding-bottom: 10px;
    }

    .footer-column h3:after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 40px;
      height: 3px;
      background: #E76A35;
    }

    .footer-column p {
      line-height: 1.6;
      margin-bottom: 20px;
      opacity: 0.8;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      color: white;
      text-decoration: none;
      opacity: 0.8;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
    }

    .footer-links a:hover {
      opacity: 1;
      color: #E76A35;
      transform: translateX(5px);
    }

    .footer-links i {
      margin-right: 10px;
      color: #E76A35;
    }

    .contact-info {
      list-style: none;
    }

    .contact-info li {
      margin-bottom: 20px;
      display: flex;
      align-items: flex-start;
      line-height: 1.5;
    }

    .contact-info i {
      margin-right: 15px;
      color: #E76A35;
      margin-top: 4px;
      min-width: 20px;
    }

    /* Override for info-card circle icons — keep centered and white */
    .contact-info .info-icon i {
      margin: 0;
      color: white;
    }

    .contact-info div {
      flex: 1;
    }

    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }

    .social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: white;
      transition: all 0.3s ease;
    }

    .social-links a:hover {
      background: #E76A35;
      transform: translateY(-3px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 20px 40px 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-content: center;
    }

    .copyright {
      opacity: 0.7;
      font-size: 0.9rem;
      align-items: center;
    }

    .legal-links {
      display: flex;
      gap: 20px;
    }

    .legal-links a {
      color: white;
      text-decoration: none;
      opacity: 0.7;
      font-size: 0.9rem;
      transition: all 0.3s ease;
    }

    .legal-links a:hover {
      opacity: 1;
      color: #ce6820;
    }

    /* Responsive Design */
    @media (max-width: 900px) {
      .footer-content {
        flex-direction: column;
        gap: 30px;
      }
      
      .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
      }
      
      .legal-links {
        justify-content: center;
      }
      
      .contact-info li {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
      }
      
      .contact-info i {
        margin-right: 0;
      }
    }