/* General Styles */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #f59e0b;
  --dark: #1e293b;
  --light: #f8fafc;
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
}

h1, h2, h3, h4 {
  color: var(--dark);
  line-height: 1.2;
}

p {
  color: #64748b;
  margin-bottom: 1rem;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary);
}

/* Background Circles */
.bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  z-index: 0;
  animation: float 15s infinite ease-in-out;
}

.circle-1 {
  width: 300px;
  height: 300px;
  background: #007bff;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.circle-2 {
  width: 400px;
  height: 400px;
  background: #a2d95f;
  bottom: 10%;
  right: 5%;
  animation-delay: 2s;
}

.circle-3 {
  width: 200px;
  height: 200px;
  background: #ffcc00;
  top: 50%;
  right: 15%;
  animation-delay: 4s;
}

.circle-4 {
  width: 350px;
  height: 350px;
  background: #ff6b6b;
  bottom: 20%;
  left: 10%;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-50px) translateX(50px);
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(245, 245, 245, 0.9);
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(245,245,245,0.7) 100%);
  z-index: -1;
}

.hero-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
  position: relative;
  z-index: 2;
}

.slide-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slide-container.active {
  opacity: 1;
}

.slide-text {
  width: 50%;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s;
}

.slide-image-container {
  position: relative;
  width: 45%;
  opacity: 0;
  transform: translateY(50px) rotate(-5deg);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.slide-container.active .slide-text {
  opacity: 1;
  transform: translateX(0);
}

.slide-container.active .slide-image-container {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

.slide-container h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #000;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.slide-container p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot:hover {
  transform: scale(1.2);
}

.slider-dot.active {
  background-color: #007bff;
  transform: scale(1.2);
}

.slide-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-image-wrapper {
  position: relative;
  width: clamp(300px, 40vw, 400px);
  height: clamp(300px, 40vw, 400px);
}

.slide-image {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 8px solid white;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  position: relative;
  z-index: 1;
  transform-style: preserve-3d;
}

.decorative-shape {
  top: 50%;
  left: 50%;
  position: absolute;
  width: 110%;
  height: 110%;
  z-index: -1;
  background: linear-gradient(305deg, #FF6B35 0%, #FF9E1B 100%);
  border-radius: 30px;
  transform: rotate(10deg) translate(-20px, -20px);
  transition: all 0.8s ease;
}

.slide-container.active .decorative-shape {
  transform: rotate(5deg) translate(-10px, -10px);
}

.icon-checkmark {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #ffcc00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transform: scale(0);
  transition: all 0.5s ease 0.5s;
}

.slide-container.active .icon-checkmark {
  transform: scale(1) rotate(360deg);
}

.icon-checkmark::before {
  content: "✔";
  font-size: 1.5rem;
  color: white;
}

.slide-image:hover {
  transform: scale(1.05);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* Quick Links Section */
.quick-links-text {
  padding: 2rem 0;
  background-color: #f9f9f9;
  text-align: center;
}

.quick-links-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.quick-links-list ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(20px, 5vw, 100px);
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.quick-links-list li {
  margin: 0;
}

.quick-links-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: clamp(1rem, 3vw, 1.5rem);
  transition: color 0.3s ease;
}

.quick-links-list a:hover {
  color: #4a6bff;
}

.quick-links-list i {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: #073e5c;
}

/* Highlights Section */
.highlights {
  padding: 40px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.highlights h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 20px;
  color: #333;
}

.highlights p {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: #666;
  margin-bottom: 30px;
}

.highlight-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.highlight-cards .card {
  background: linear-gradient(0deg, #FF6B35 0%, #FF9E1B 100%);
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  width: clamp(120px, 30vw, 200px);
  height: clamp(100px, 20vw, 100px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(0.8rem, 2vw, 1rem);
  color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-cards .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* News Section */
.news {
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  max-width: 1200px;
  margin: 0 auto;
}

.news h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #2c3e50;
  position: relative;
}

.news-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.news-item {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  border-left: 4px solid #3498db;
}

.news-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.news-item i {
  font-size: 24px;
  color: #3498db;
  margin-top: 3px;
}

.news-content h3 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
  color: #2c3e50;
}

.news-content p {
  margin: 0;
  color: #7f8c8d;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* About Section */
.about {
  padding: 4rem 0;
  background-color: #f9fafc;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
}

.about h2 {
  text-align: center;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #2c3e50;
  margin-bottom: 1.5rem;
  opacity: 0;
  line-height: 1.2;
}

.mission {
  text-align: center;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #555;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
  opacity: 0;
  padding: 0 1rem;
  font-weight: 500;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
}

.about-text {
  flex: 1;
  min-width: 0;
  opacity: 0;
  transform: translateX(-20px);
}

.dedicated {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.7;
  color: #444;
  margin-bottom: 2rem;
  font-weight: 500;
}

.objectives h3 {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  color: #2c3e50;
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

.objectives h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 3.75rem;
  height: 0.1875rem;
  background: #3498db;
  border-radius: 3px;
}

.objectives ul {
  padding-left: 1.5rem;
}

.objectives li {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #555;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  position: relative;
  opacity: 0;
  transform: translateX(-10px);
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-width: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(20px);
}

.metric-box {
  background: white;
  padding: 1.5rem;
  border-radius: 0.625rem;
  box-shadow: 0 0.5rem 1.5625rem rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0,0,0,0.05);
  flex: 1;
}

.metric-box:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 0.75rem 1.875rem rgba(0,0,0,0.12);
}

.metric-number {
  display: block;
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: bold;
  color: #3498db;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.metric-box:hover .metric-number {
  color: #2980b9;
}

.metric-text {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: #7f8c8d;
  font-weight: 500;
}

/* container & heading */
.testimonials {
  background: #073e5c;
  padding: 2rem 1rem;
  color: #fff;
  text-align: center;
  border-radius: 12px;
}
.testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #fff;
  position: relative;
  display: inline-block;
}
.testimonials h2::after {
  content: "";
  display: block;
  width: 50%;
  height: 4px;
  background: linear-gradient(90deg, #ef7602, #073e5c);
  margin: .5rem auto 0;
}

.gender-icon {
  font-size: 2rem;
  color: #ef7602;
}

/* slider */
.testimonial-slider {
  overflow-x: hidden;
  padding-bottom: 1rem;
}
.slider-track {
  display: flex;
  gap: 1.5rem;
}

/* each card */
.testimonial-card {
  background: #0a4a70;
  min-width: 280px;
  max-width: 320px;
  border-radius: 8px;
  padding: 1.5rem;
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* speech-bubble "tail" */
.testimonial-card::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 30px;
  width: 0; height: 0;
  border: 12px solid transparent;
  border-top-color: #0a4a70;
}

/* stars */
.star-rating {
  margin-bottom: 1rem;
}
.star-rating i {
  color: #ef7602;
  margin-right: 0.2rem;
  font-size: 1rem;
}

/* text */
.testimonial-text {
  flex-grow: 1;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 1.25rem;
  position: relative;
}
.testimonial-text .read-more {
  display: inline-block;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #ef7602;
  text-decoration: none;
}
.testimonial-text .read-more:hover {
  text-decoration: underline;
}

/* footer */
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: space-evenly;
}
.avatar {
  width: 40px; height: 40px;
  background: #ef7602;
  color: #073e5c;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.testimonial-footer .info {
  text-align: left;
}
.student-name {
  font-weight: bold;
  font-size: 0.95rem;
}
.timestamp {
  font-size: 0.8rem;
  opacity: 0.7;
}


/* Contact Us Section - Orange & Blue Theme */ 
.contact { 
  padding: 60px 20px; 
  background: linear-gradient(135deg, #fff9f5 0%, #f5f7ff 100%); 
  text-align: center; 
  position: relative; 
  overflow: hidden; 
} 
.contact h2 { 
  font-size: 2.5rem; 
  margin-bottom: 50px; 
  color: #2c3e50; 
  position: relative; 
  display: inline-block; 
} 
.contact h2::after { 
  content: ''; 
  position: absolute; 
  bottom: -15px; 
  left: 50%; 
  transform: translateX(-50%); 
  width: 80px; 
  height: 4px; 
  background: linear-gradient(90deg, #ff7b25 0%, #106fff 100%); 
  border-radius: 2px; 
} 
.address-container { 
  display: flex; 
  justify-content: center; 
  flex-wrap: wrap; 
  gap: 30px; 
  max-width: 1200px; 
  margin: 0 auto; 
} 
.address { 
  background: white; 
  padding: 30px; 
  border-radius: 15px; 
  width: 100%; 
  max-width: 500px; 
  text-align: left; 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); 
  transition: all 0.4s ease; 
  position: relative; 
  overflow: hidden; 
  z-index: 1; 
  border-top: 4px solid #ff7b25; 
} 
.address::before { 
  content: ''; 
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 5px; 
  height: 100%; 
  background: linear-gradient(to bottom, #ff7b25, #106fff); 
  transition: width 0.3s ease; 
}

.address:hover::before { 
  width: 100%; 
  opacity: 0.1; 
}

.address:hover { 
  transform: translateY(-10px); 
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12); 
}

.address h3 { 
  font-size: 1.5rem; 
  margin-bottom: 20px; 
  color: #2c3e50; 
  position: relative; 
  z-index: 2; 
}

.address p { 
  font-size: 1.1rem; 
  color: #555; 
  margin-bottom: 15px; 
  line-height: 1.6; 
  position: relative; 
  z-index: 2; 
  display: flex; 
  align-items: center; 
}

.address p:last-child { 
  margin-bottom: 0; 
}

.address p i { 
  margin-right: 10px; 
  font-size: 1.2rem; 
  min-width: 25px; 
  text-align: center; 
}
 
/* Color specific icons */ 
.address p i.fa-map-marker-alt { color: #ff7b25; } 
.address p i.fa-phone { color: #106fff; } 
.address p i.fa-envelope { color: #ff7b25; } 


/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.animate-slide-left {
  animation: slideLeft 0.8s ease-out forwards;
}

.animate-slide-right {
  animation: slideRight 0.8s ease-out forwards;
  animation-delay: 0.3s;
}

.animate-list-item {
  animation: fadeInUp 0.6s ease-out forwards;
  animation-delay: calc(var(--i) * 0.1s);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .about-content {
    gap: 2rem;
  }
  
  .metrics {
    gap: 1.2rem;
  }
  
  .slide-text {
    width: 55%;
  }
  
  .slide-image-container {
    width: 40%;
  }
}

@media (max-width: 768px) {
  /* .hero {
    height: auto;
    min-height: auto;
    padding: 80px 0;
  }
  
  .slide-container {
    position: relative;
    flex-direction: column;
    height: auto;
    margin-bottom: 40px;
  }
  
  .slide-text, .slide-image-container {
    width: 100%;
    transform: none !important;
  }
  
  .slide-image-container {
    margin-top: 30px;
  }
  
  .slider-nav {
    position: relative;
    bottom: auto;
    margin-top: 30px;
  } */
   
  /* Hero Section - Sequential Appearance (no animations) */
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 40px 20px 0px;
        animation: none !important;
    }

    .slide-container {
        flex-direction: column;
        position: relative;
        height: auto;
        opacity: 1 !important;
        animation: none !important;
    }
    .slider-nav {
        display: none !important;
    }

    .slide-text {
        width: 100%;
        padding: 0;
        margin-bottom: 15px;
        order: 1;
        text-align: center;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .slide-text p{
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .slide-image-wrapper {
      height: 200px !important;
    }

    .slide-image-container {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
        order: 2;
        display: flex;
        justify-content: center;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .slide-image-wrapper {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .slide-image {
        width: 100%;
        height: auto;
        max-height: 300px;
        transform: none !important;
    }

    .slide-container h1 {
        font-size: 1.8rem;
        animation: none !important;
    }

    .slide-container p {
        font-size: 1rem;
        animation: none !important;
    }

    .btn {
        display: block;
        margin: 20px auto 0;
        width: fit-content;
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    /* Remove all decorative animations for mobile */
    .bg-circle,
    .particle,
    .decorative-shape,
    .icon-checkmark,
    .slider-dot::before {
        display: none !important;
        animation: none !important;
    }

    /* Disable hover effects on mobile */
    .card:hover,
    .service-item:hover,
    .testimonial:hover,
    .address:hover,
    .course:hover,
    .batch:hover,
    .placement-stats:hover,
    .slide:hover {
        transform: none !important;
        box-shadow: none !important;
    }
  
  .about {
    padding: 3rem 0;
  }
  
  .about-content {
    flex-direction: column;
    gap: 2.5rem;
  }
  
  .metrics {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .metric-box {
    flex: 1 1 calc(50% - 1rem);
    min-width: 10rem;
    padding: 1.2rem;
  }
  
  .about-text, .metrics {
    transform: none !important;
    opacity: 1;
  }
  
  .animate-slide-left, 
  .animate-slide-right {
    animation: none;
  }
  
  .testimonials {
    padding: 3rem 1rem;
    height: 300px;
  }

  .testimonials h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    margin-top: 20px;
  }

  .testimonial-slider {
    overflow: hidden;
    margin: 10px 0;
    padding-bottom: 0;
    height: 280px;
  }

  .testimonial-text {
    font-size: 1rem;
    line-height: 1;
    margin-bottom: 1rem;
  }

  .avatar {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .testimonial-card {
    flex: 0 0 260px;
    padding: 0.5rem;
  }

  .slider-track {
    display: flex;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .hero-content {
    padding: 0 20px;
  }
  
  .mission {
    margin-bottom: 2rem;
    padding: 0;
  }
  
  .metrics {
    flex-direction: column;
    gap: 1rem;
  }
  
  .metric-box {
    width: 100%;
    flex: 1 1 auto;
  }
  
  .objectives ul {
    padding-left: 1.2rem;
  }
  
  .objectives li {
    margin-bottom: 0.8rem;
  }
  
  .slide-image-wrapper {
    width: 280px;
    height: 280px;
  }
  
  .highlight-cards .card {
    width: 100%;
    max-width: 160px;
  }
  
  .service-item {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .animate-fade-in,
  .animate-slide-left,
  .animate-slide-right,
  .animate-list-item {
    animation: fadeIn 0.5s ease-out forwards !important;
    transform: none !important;
  }
  
  .bg-circle {
    animation: none !important;
  }
  
  .slide-container,
  .slide-text,
  .slide-image-container,
  .decorative-shape,
  .icon-checkmark {
    transition: none !important;
  }
}

/* new Css */
/* Core Values Section */ 
.core-values {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9fafc 0%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
}

.core-values::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: rgba(255,107,53,0.1);
    border-radius: 50%;
    z-index: 0;
}

.core-values::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(16,111,255,0.1);
    border-radius: 50%;
    z-index: 0;
}

.core-values h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.core-values h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35 0%, #106fff 100%);
    margin: 20px auto 0;
    border-radius: 2px;
}

.values-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    width: calc(33.333% - 2.5rem);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.value-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.color-overlay {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    z-index: -1;
    transition: all 0.6s ease;
}

.color-overlay.orange {
    width: 200px;
    height: 200px;
    background: #ff6b35;
    top: -50px;
    left: -50px;
}

.color-overlay.blue {
    width: 200px;
    height: 200px;
    background: #106fff;
    bottom: -50px;
    right: -50px;
}

.value-card:hover .color-overlay.orange {
    transform: scale(1.2) translate(-20px, -20px);
    opacity: 0.4;
}

.value-card:hover .color-overlay.blue {
    transform: scale(1.2) translate(20px, 20px);
    opacity: 0.4;
}

.value-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #FF6B35 0%, #FF9E1B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    box-shadow: 0 15px 30px rgba(255,107,53,0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.value-card:nth-child(even) .value-icon {
    background: linear-gradient(135deg, #106fff 0%, #0033a0 100%);
    box-shadow: 0 15px 30px rgba(16,111,255,0.3);
}

.value-card:hover .value-icon {
    transform: rotate(15deg) scale(1.1);
    box-shadow: 0 20px 40px rgba(255,107,53,0.4);
}

.value-card:nth-child(even):hover .value-icon {
    box-shadow: 0 20px 40px rgba(16,111,255,0.4);
}

.value-card h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    z-index: 2;
}

.value-card h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: #ff6b35;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.value-card:nth-child(even) h3::after {
    background: #106fff;
}

.value-card:hover h3::after {
    width: 70px;
}

.value-card p {
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .value-card {
        width: calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .core-values {
        padding: 4rem 0;
    }
    
    .core-values h2 {
        font-size: 2.2rem;
    }
    
    .value-card {
        width: 100%;
        max-width: 450px;
        padding: 2rem;
    }
    
    .value-icon {
        width: 90px;
        height: 90px;
        font-size: 2.5rem;
    }
    
    .value-card h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .core-values {
        padding: 3rem 0;
    }
    
    .core-values h2 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    
    .value-card {
        padding: 1.8rem;
    }
    
    .value-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }
    
    .value-card h3 {
        font-size: 1.4rem;
    }
    
    .value-card p {
        font-size: 1rem;
    }
    
    .color-overlay.orange,
    .color-overlay.blue {
        width: 150px;
        height: 150px;
    }
}


/* CSS--------------------------------------------------  */
/* 4 Directional Verticals Section - Orange/Blue Theme */ 
.verticals { 
    padding: 4rem 0; 
    background-color: #f8f9fa; 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
} 
 
.verticals h2 { 
    text-align: center; 
    font-size: 2.5rem; 
    color: #2c3e50; 
    margin-bottom: 3rem; 
    position: relative; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
} 
 
.verticals h2::after { 
content: ''; 
display: block; 
width: 100px; 
height: 4px; 
background: #FF6B35; /* Orange accent */ 
margin: 15px auto 0; 
border-radius: 2px; 
} 
.verticals-container { 
display: flex; 
flex-wrap: wrap; 
justify-content: center; 
gap: 2rem; 
max-width: 1200px; 
margin: 0 auto; 
padding: 0 1.5rem; 
} 
.vertical-card { 
background: white; 
border-radius: 10px; 
padding: 2.5rem 2rem; 
width: calc(50% - 2rem); 
box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
transition: all 0.3s ease; 
text-align: center; 
position: relative; 
overflow: hidden; 
} 
.vertical-card::before { 
content: ''; 
position: absolute; 
top: 0; 
left: 0; 
width: 4px; 
height: 100%; 
background: #106fff; /* Blue accent */ 
transition: width 0.3s ease; 
} 
.vertical-card:nth-child(odd)::before { 
background: #FF6B35; /* Orange accent for odd cards */ 
} 
.vertical-card:hover { 
transform: translateY(-10px); 
box-shadow: 0 15px 30px rgba(0,0,0,0.1); 
} 
.vertical-card:hover::before { 
width: 8px; 
} 
.vertical-icon { 
width: 80px; 
height: 80px; 
margin: 0 auto 1.5rem; 
border-radius: 50%; 
display: flex; 
align-items: center; 
justify-content: center; 
color: white; 
font-size: 2rem; 
} 
.vertical-card h3 { 
font-size: 1.5rem; 
color: #2c3e50; 
margin-bottom: 1.5rem; 
position: relative; 
padding-bottom: 10px; 
} 
.vertical-card h3::after { 
content: ''; 
position: absolute; 
bottom: 0; 
left: 50%; 
transform: translateX(-50%); 
width: 50px; 
height: 2px; 
background: #106fff; /* Blue accent */ 
} 
.vertical-card:nth-child(odd) h3::after { 
background: #FF6B35; /* Orange accent for odd cards */ 
} 
.vertical-card p { 
color: #7f8c8d; 
    line-height: 1.6; 
    font-size: 1.05rem; 
} 
 
/* Responsive adjustments */ 
@media (max-width: 992px) { 
    .vertical-card { 
        width: 100%; 
        max-width: 500px; 
    } 
} 
 
@media (max-width: 768px) { 
    .verticals h2 { 
        font-size: 2rem; 
    } 
     
    .vertical-icon { 
        width: 70px; 
        height: 70px; 
        font-size: 1.8rem; 
    } 
     
    .vertical-card h3 { 
        font-size: 1.3rem; 
    } 
     
    .vertical-card p { 
        font-size: 1rem; 
    } 
} 
 
@media (max-width: 480px) { 
    .verticals { 
        padding: 3rem 0; 
    } 
     
    .verticals h2 { 
        font-size: 1.8rem; 
        margin-bottom: 2rem; 
    } 
     
    .vertical-card { 
        padding: 1.5rem; 
    } 
     
    .vertical-icon { 
        width: 60px; 
        height: 60px; 
        font-size: 1.5rem; 
    } 
}

/* Mobile Responsiveness */ 
@media (max-width: 768px) { 
.contact { 
padding: 40px 15px; 
    } 
     
    .contact h2 { 
        font-size: 2rem; 
        margin-bottom: 30px; 
    } 
     
    .address { 
        padding: 25px; 
    } 
     
    .address h3 { 
        font-size: 1.3rem; 
    } 
     
    .address p { 
        font-size: 1rem; 
    } 
} 
 
@media (max-width: 480px) { 
    .contact h2 { 
        font-size: 1.8rem; 
    } 
     
    .address { 
        padding: 20px; 
    } 
     
    .address h3 { 
      font-size: 1.2rem; 
      margin-bottom: 15px; 
    } 
    .address p { 
      font-size: 0.95rem; 
    } 
    .address p i { 
      font-size: 1rem; 
    } 
}