/* ================================
   LOADING SCREEN
================================ */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(45, 65, 146, 0.85), rgba(162, 40, 111, 0.85), rgba(211, 113, 190, 0.85));
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-container {
    text-align: center;
    transform: translateY(-50px);
}

.logo-loader {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.loading-logo {
    height: 120px;
    width: auto;
    animation: logoPulse 2s ease-in-out infinite;
}

.loading-spinner {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 3px solid transparent;
    border-top: 3px solid rgba(255, 255, 255, 0.8);
    border-right: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.loading-text {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
}

.loading-dots {
    display: inline-block;
}

.dot {
    opacity: 0;
    font-size: 30px;
    animation: dotAnimation 1.5s infinite;
}

.dot:nth-child(1) { animation-delay: 0.1s; }
.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.3s; }

/* Animations */
@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes dotAnimation {
    0%, 20% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Optional: Add a progress bar */
.loading-progress {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    margin: 20px auto 0;
    overflow: hidden;
}

.loading-progress-bar {
    height: 100%;
    background: white;
    border-radius: 2px;
    width: 0%;
    animation: progressLoad 2s ease-in-out;
}

@keyframes progressLoad {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.body{
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
}

/* ================================
   GLOBAL HEADER STYLES
================================ */
.top-bar,
.main-header {
  border-bottom: 1px solid #d4d1d1;
}

/* ================================
   ROW 1: TOP BAR
================================ */
.top-bar {
  background: #fff;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 20px;
}

.top-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-menu a {
  color: #504f4f;
  text-decoration: none;
}

.top-menu a:hover{
  text-decoration: none;
  color: rgb(203, 76, 175);
}

.top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-icons a {
  color: #504f4f;
  text-decoration: none;
  font-size: 20px;
  margin-right: 8px;
}

.social-icons i:hover{
  color: rgb(203, 76, 175);
  text-decoration: none;
  font-size: 23px;
}

.btn-pri {
 background: linear-gradient(45deg, #c45898, rgb(190, 125, 176));
  color: #fff;
  padding: 13px 26px;
  text-decoration: none;
  font-weight: 600;
}

.btn-pri:hover{
  color: #333;
  text-decoration: none;
}

/* ================================
   ROW 2: MAIN HEADER
================================ */
.main-header{
  height: 120px;
  align-content: center;
  overflow: visible;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
}

.logo img {
  height: 70px;
}

.logo{
  flex-shrink: 0;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #504f4f;
  padding: 10px 14px;
  white-space: nowrap;
  background: #fff;
}

.contact-slider-container {
  max-width: 800px;
  flex: 1;
  overflow: visible;
  padding: 10px 0;
}

.contact-slider{
  width: 100%;
  padding: 10px 17px;
  overflow: hidden;
}

.contact-slider .swiper-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px; 
}

.contact-slider .swiper-slide {
  width: auto !important;
  flex-shrink: 0;
}

.swiper-wrapper {
  display: flex;
  justify-content: space-between;
}

.swiper-slide {
  flex-shrink: 0;
  width: auto !important; 
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;       
  width: 32px;
  height: 32px;
}

.contact-icon i {
  font-size: 22px;
  color: rgb(203, 76, 175);
}

.contact-item h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
}

.contact-item p {
  margin: 0;
  font-size: 12px;
  color: #f4e5e5;
}

.contact-item i {
  flex-shrink: 0;
  display: flex;
  font-size: 33px;
  color: rgb(203, 76, 175);
}

.contact-item:last-child {
  border-right: none;
}

.contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center; 
  line-height: 1.3;
}

.contact-info h5 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: #504f4f;
}

.contact-info p {
  margin: 0;
  font-size: 14px;
  color: #777;
}

/* ================================
   ROW 3: NAVIGATION BAR
================================ */
.main-nav .container { 
  padding: 0 20px;
  height: 200px;
  display: flex;
  align-items: center;
}

.main-nav {
  height: 65px;
  display: flex;
  align-items: center;
}

.d-nm{
  font-size: 14px;
}

.nav-menu {
  list-style: none;
  display: flex;
  height: 65px;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%; 
}

/* Line between items */
.nav-menu li:not(:last-child)::after {
  content: "";
  border-right: 1px solid #ccc;
  margin: 0 14px;
  height: 100%;
}

.nav-menu li:first-child::before {
  content: "";
  border-right: 1px solid #ccc;
  margin: 0 14px 0 0;
  height: 100%;
}

.nav-menu li:last-child::after {
  content: "";
  border-right: 1px solid #ccc;
  margin: 0 0 0 14px;
  height: 100%;
}

.nav-menu a {
  color: #504f4f;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding: 14px 0;
  display: inline-block;
}

.nav-menu a:hover{
  text-decoration: none;
  color: rgb(203, 76, 175);
}

.nav-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 3px;
  background: rgb(203, 76, 175);
  transition: width 0.3s;
}

.nav-menu a:hover::before {
  width: 100%;
}

/* ================================
   MOBILE NAVIGATION
================================ */
.mobile-menu-toggle {
  font-size: 30px;
  color: #504f4f;
  margin-top: 20px;
  height: 20px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  z-index: 10;
  display: none !important;
}

.mobile-menu-toggle:focus {
  outline: none;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 99%;
  max-width: 900px;
  height: 100vh;
  background: linear-gradient(135deg, #1a2a6c, #740847, rgb(203, 76, 175));
  /* animation: gradientShift 15s ease infinite; */
  z-index: 99990;
  transition: left 0.3s ease;
  overflow-y: auto;
  box-shadow: 2px 0 10px rgba(0,0,0,0.3);
}

.mobile-menu-overlay.active {
  left: 0;
}

.mobile-menu-header {
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  position: relative;
  z-index: 1;
}

.mobile-menu-header .logo img {
  height: 50px;
}

.mobile-close-btn {
  background: none;
  border: none;
  color: #333;
  font-size: 35px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  position: relative;
  z-index: 3;
}

.mobile-close-btn:focus{
  outline: none;
}

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.mobile-nav-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.mobile-nav-menu a {
  display: block;
  padding: 15px 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.mobile-nav-menu a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.mobile-backdrop{
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99989;
}

.mobile-backdrop.active{
  display: block;
}

/* ================================
   RESPONSIVE STYLES
================================ */
@media (max-width: 992px) {
  .top-bar {
    display: none;
  }
  
  .contact-slider-container {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block !important;
  }
  
  .main-nav {
    display: none;
  }
  
  .header-wrapper {
    justify-content: space-between;
    padding: 10px 20px;
  }
  
  .main-header {
    height: auto;
    padding: 10px 0;
  }
}

@media (min-width: 993px) {
  .mobile-menu-toggle {
   display: block !important;
  }
}

/* ================================
   HERO SECTION
================================ */
:root {
  --primary: #8a2be2;
  --secondary: #ff6b6b;
  --accent: #4ecdc4;
  --dark: #2c3e50;
  --light: #f8f9fa;
  --transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-section {
  min-height: 60vh;
  background: linear-gradient(135deg, #1a2a6c, #740847, rgb(203, 76, 175));
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-content {
  text-align: center;
  color: white;
  z-index: 10;
  max-width: 1200px;
  padding: 20px 20px;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-out;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease-out 0.3s both;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.btn-hero {
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  font-size: 16px;
}

.btn-hero a:hover{
    text-decoration: none;
}

.btn-primary-hero a {
  color: #a8437c;
}

.btn-primary-hero a:hover{
    text-decoration: none;
    color: white;
}

.btn-secondary-hero {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-hero:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.btn-primary-hero:hover {
  background: #e296c5;
  color: rgb(75, 10, 61);
}

.btn-secondary-hero:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-secondary-hero a{
    color: #fff;
}

.btn-secondary-hero a:hover{
    color: #a8437c;
}

.stats-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.stat-item {
  text-align: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  min-width: 120px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 5px;
  display: block;
}

.stat-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.core-bn a{
    color: #fff;
}
.core-bn a:hover{
    text-decoration: none;
    color: #a8437c;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 15s infinite linear;
}

.floating-element:nth-child(1) {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
  animation-duration: 20s;
}

.floating-element:nth-child(2) {
  width: 120px;
  height: 120px;
  top: 70%;
  left: 80%;
  animation-delay: 2s;
  animation-duration: 25s;
}

.floating-element:nth-child(3) {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 85%;
  animation-delay: 4s;
  animation-duration: 15s;
}

.floating-element:nth-child(4) {
  width: 100px;
  height: 100px;
  top: 80%;
  left: 15%;
  animation-delay: 6s;
  animation-duration: 30s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -50px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 10;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0) translateX(-50%);
  }
  40% {
    transform: translateY(-20px) translateX(-50%);
  }
  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}

.scroll-indicator i {
  font-size: 24px;
  color: white;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }

  .stats-container{
    display: none;
  }

  .stat-item {
    padding: 15px; /* Reduced from 20px */
    min-width: 120px; /* Reduced from 150px */
  }
  .btn-hero {
    padding: 12px 25px; /* Reduced from 15px 35px */
  }
}

/* CORE VALUEEEEEEEEEEEEEEE */
        .core-values-section {
            padding: 80px 0;
            max-width: 100%;
        }

        .core-btn{
          background-color: #c45898;
          color: #fff;
          border: none;
          padding: 10px 10px ;
        }

        .core-btn:hover{
          background-color: #fff;
          color: #c45898;
          border: 1px solid #c45898;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, #3498db, #2c3e50);
            border-radius: 2px;
        }

        .values-container {
            display: grid;
            grid-template-columns: 50vw 1fr;
            align-items: center;
        }

        .image-container {
            grid-column: 1;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .image-container img {
            width: 100%;
            height: 100vh;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

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

        .values-content {
            grid-column: 2;
            max-width: 600px;
            padding: 0 50px;
            margin-left: 100px;
        }

        .values-content h3 {
            font-size: 1.8rem;
            color: #2c3e50;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .values-content h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: #c45898;
        }

        .values-content p {
            margin-bottom: 25px;
            color: #555;
            font-size: 1.1rem;
        }

        .values-list {
            list-style: none;
            margin-bottom: 30px;
        }

        .values-list li {
            margin-bottom: 15px;
            padding-left: 35px;
            position: relative;
            font-size: 1.1rem;
            color: #444;
        }

        .values-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 0;
            width: 1px;
            height: 25px;
            color: #c45898;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .values-container {
                grid-template-columns: 1fr;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }

            .image-container{
              grid-column: 1;
              min-height: 150px;
            }

            .image-container img{
              height: 65vh;
            }
            
            .values-content{
              justify-content: center;
              align-items: center;
              margin-top: -300px;
              margin-bottom: -120px;
              grid-column: 1;
              padding: 30px 20px;
            }

            .values-content h3 {
                font-size: 1.5rem;
            }
        }

        .core-values-section{
          margin-top: -78px;
        }

        /* WHY CHOSEEEEEEEEEEEE */
        
        .why-choose-us-section {
            padding: 80px 5%;
            max-width: 1200px;
            margin: -70px auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
            display: inline-block;
            position: relative;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right,  rgba(45, 65, 146, 0.85), rgba(162, 40, 111, 0.85), rgba(211, 113, 190, 0.85));
            border-radius: 2px;
        }

        .section-header p {
            font-size: 1.2rem;
            color: #7f8c8d;
            margin-top: 20px;
        }

        /* CSS-Only Slider */
        .features-slider {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
        }

        .slider-container {
            display: flex;
            transition: transform 0.5s ease;
            width: 400%; /* 4 slides = 400% */
        }

        .slider-slide {
            flex: 0 0 25%; /* Each slide takes 25% of container (4 slides) */
            position: relative;
            overflow: hidden;
            height: 400px;
        }

        .slider-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient( 45deg, rgba(45, 65, 146, 0.85), rgba(162, 40, 111, 0.85), rgba(211, 113, 190, 0.85));
            color: white;
            padding: 30px 20px 20px;
            transform: translateY(0);
            transition: transform 0.3s ease;
        }

        .slide-content h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }

        .slide-content p {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* Hover Effects */
        .slider-slide:hover img {
            transform: scale(1.1);
        }

        .slider-slide:hover .slide-content {
            transform: translateY(-10px);
        }

        /* Slider Navigation */
        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 15px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #bdc3c7;
            cursor: pointer;
            transition: background 0.3s ease;
        }

        .slider-dot.active {
            background: #3498db;
        }

        /* Hide radio inputs */
        .slider-input {
            display: none;
        }

        /* Slide Transitions */
        #slide1:checked ~ .slider-container {
            transform: translateX(0);
        }

        #slide2:checked ~ .slider-container {
            transform: translateX(-25%);
        }

        #slide3:checked ~ .slider-container {
            transform: translateX(-50%);
        }

        #slide4:checked ~ .slider-container {
            transform: translateX(-75%);
        }

        /* Active dot styling */
        #slide1:checked ~ .slider-nav .dot1,
        #slide2:checked ~ .slider-nav .dot2,
        #slide3:checked ~ .slider-nav .dot3,
        #slide4:checked ~ .slider-nav .dot4 {
            background: #3498db;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }

            .slider-slide {
                height: 300px;
            }

            .slide-content {
                padding: 20px 15px 15px;
            }

            .slide-content h3 {
                font-size: 1.3rem;
            }

            .slide-content p {
                font-size: 0.9rem;
            }
            
            /* Auto-zoom on mobile without hover */
            .slider-slide img {
                transform: scale(1.05);
            }
        }

        @media (max-width: 480px) {
            .slider-slide {
                height: 250px;
            }
            
            .section-header h2 {
                font-size: 1.8rem;
            }
        }

        /* FEED BACKKKKKKKK */
                .testimonials-section {
            padding: 10px 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
            display: inline-block;
            position: relative;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right,  rgba(45, 65, 146, 0.85), rgba(162, 40, 111, 0.85), rgba(211, 113, 190, 0.85));
            border-radius: 2px;
        }

        .testimonials-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, rgba(45, 65, 146, 0.85), rgba(162, 40, 111, 0.85), rgba(211, 113, 190, 0.85));
        }

        .profile-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .profile-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #e8f4fc;
            margin-right: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .profile-info {
            flex: 1;
        }

        .profile-info h3 {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .stars {
            color: #f39c12;
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .stars .far {
            color: #ddd;
        }

        .testimonial-text {
            color: #555;
            font-size: 1rem;
            line-height: 1.7;
            font-style: italic;
            position: relative;
            padding-left: 20px;
        }

        .testimonial-text::before {
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 3rem;
            opacity: 0.3;
            font-family: Georgia, serif;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }

            .testimonials-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .testimonial-card {
                padding: 25px;
            }

            .profile-img {
                width: 60px;
                height: 60px;
            }
        }

        @media (max-width: 480px) {
            .section-header h2 {
                font-size: 1.8rem;
            }

            .testimonial-card {
                padding: 20px;
            }

            .profile-header {
                flex-direction: column;
                text-align: center;
            }

            .profile-img {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }


        /* REVIEWWWWWWWWWWWWW */
                .review-section {
            padding: 80px 5%;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
            display: inline-block;
            position: relative;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, rgba(45, 65, 146, 0.85), rgba(162, 40, 111, 0.85), rgba(211, 113, 190, 0.85));
            border-radius: 2px;
        }

        .review-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: start;
        }

        .review-form {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .form-control:focus {
            outline: none;
            border-color: #3498db;
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .star-rating {
            display: flex;
            gap: 5px;
            margin-bottom: 10px;
        }

        .star-rating i {
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
            transition: color 0.2s ease;
        }

        .star-rating i.active {
            color: #f39c12;
        }

        .submit-btn {
            background: linear-gradient(to right, rgba(45, 65, 146, 0.85), rgba(162, 40, 111, 0.85), rgba(211, 113, 190, 0.85));
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            width: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
        }

        .submit-btn:disabled {
            background: #bdc3c7;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        .reviews-display {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            max-height: 600px;
            overflow-y: auto;
        }

        .reviews-display h3 {
            color: #2c3e50;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f1f2f6;
        }

        .user-review {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            border-left: 4px solid #db34b1;
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .reviewer-name {
            font-weight: 600;
            color: #2c3e50;
        }

        .review-stars {
            color: #f39c12;
        }

        .review-text {
            color: #555;
            line-height: 1.6;
        }

        .review-date {
            font-size: 0.85rem;
            color: #7f8c8d;
            margin-top: 10px;
        }

        .star-rating i.hover {
    color: #f39c12;
}

        .alert {
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 20px;
            display: none;
        }

        .alert-success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .alert-warning {
            background: #fff3cd;
            color: #856404;
            border: 1px solid #ffeaa7;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .review-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

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

            .review-form, .reviews-display {
                padding: 25px;
            }
        }

        @media (max-width: 480px) {
            .section-header h2 {
                font-size: 1.8rem;
            }

            .review-form, .reviews-display {
                padding: 20px;
            }
        }


        /* ================================
   FOOTER STYLES
================================ */
.footer-section {
    background: linear-gradient(135deg, #1a2a6c, #2c3e50);
    color: white;
    margin-top: 80px;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-description {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 14px;
}

.social-linkss {
    display: flex;
    gap: 15px;
}

.social-linkk {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-linkk:hover {
    background: linear-gradient(45deg, #a37d94, rgb(190, 125, 176));
    transform: translateY(-3px);
    text-decoration: none;
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    color: white;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(to right, #c45898, rgb(190, 125, 176));
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
    text-decoration: none;
    padding-left: 5px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-itemm {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-itemm i {
    color: #c45898;
    margin-top: 3px;
    font-size: 16px;
    min-width: 16px;
}

.contact-itemm p {
    margin: 0;
    color: #525151;
    font-size: 14px;
    line-height: 1.4;
}

.newsletter-text {
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.newsletter-form {
    margin-bottom: 30px;
}

.input-group {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.input-group input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    background: transparent;
    color: white;
    font-size: 14px;
}

.input-group input::placeholder {
    color: #95a5a6;
}

.input-group input:focus {
    outline: none;
}

.input-group button {
    padding: 12px 20px;
    background: linear-gradient(45deg, #c45898, rgb(190, 125, 176));
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.input-group button:hover {
    background: linear-gradient(45deg, #a8437c, rgb(160, 100, 150));
}

.emergency-contact {
    background: rgba(231, 76, 60, 0.1);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.emergency-contact h4 {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: white;
}

.emergency-contact p {
    margin: 0;
    color: #bdc3c7;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.emergency-icon {
    color: #e74c3c;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright p {
    margin: 0;
    color: #95a5a6;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: #95a5a6;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  text-decoration: none;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
    
    .contact-itemm {
        flex-direction: column;
        gap: 5px;
    }
    
    .contact-itemm i {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .footer-main {
        padding: 30px 0 20px;
    }
    
    .footer-logo img {
        height: 50px;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .social-linkss {
        justify-content: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}


/* about */
  h1 {
            font-size: 2.8rem;
            margin-bottom: 10px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }
        
        h2 {
            font-size: 1.8rem;
            color: #1a5276;
            margin: 25px 0 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #2e86c1;
        }
        
        .divider {
            height: 3px;
            background: linear-gradient(to right, transparent, #2e86c1, transparent);
            margin: 25px 0;
        }
        
        .content-section {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        
        .mission-section {
            background: linear-gradient(to right, #f8f9fa, white, #f8f9fa);
            border-left: 5px solid #2e86c1;
        }
        
        .vision-section {
            background: linear-gradient(to right, #f8f9fa, white, #f8f9fa);
            border-right: 5px solid #2e86c1;
        }
        
        .fear-section {
            background-color: #e8f4fc;
            border-top: 3px solid #1a5276;
            border-bottom: 3px solid #1a5276;
        }
        
        .motto {
            font-style: italic;
            font-weight: bold;
            text-align: center;
            color: #1a5276;
            margin: 15px 0;
            font-size: 1.2rem;
        }
        
        .highlight {
            background-color: #fff9db;
            padding: 2px 5px;
            border-radius: 3px;
            font-weight: 600;
        }
        
        .age-range {
            display: inline-block;
            background-color: #1a5276;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin: 10px 0;
        }

        .excuse{
          border-bottom: 1px solid #cdc9c9;
        }

        /* admisionnnn */
        /* ================================
   ADMISSION PAGE SPECIFIC STYLES
   (Will not override existing styles)
================================ */

/* Admission Content Blocks */
.admission-content-block {
    background-color: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    border: 1px solid #e9ecef;
}

.admission-title {
    color: #761a75;
    font-size: 2.5rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid #ede5ea;
    font-weight: 700;
}

.admission-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.admission-section-title {
    color: #761a75;
    font-size: 2rem;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #761a75;
    font-weight: 600;
}

.admission-subtitle {
    color: #a37d94;
    font-size: 1.5rem;
    margin: 25px 0 15px;
    font-weight: 500;
}

/* Line Splitter */
.admission-line-splitter {
    height: 3px;
    background: linear-gradient(to right,  rgba(45, 65, 146, 0.85), rgba(162, 40, 111, 0.85), rgba(211, 113, 190, 0.85));
    margin: 35px 0;
    border-radius: 2px;
}

/* Admission Steps */
.admission-step {
    margin-bottom: 30px;
    padding: 20px;
    border-left: 4px solid #c12ebfc0;
    background: linear-gradient(to right, #f8f9fa, white);
    border-radius: 0 8px 8px 0;
    transition: all 0.3s ease;
}

.admission-step:hover {
    background: linear-gradient(to right, #e8f4fc, white);
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.admission-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right,  rgba(45, 65, 146, 0.85), rgba(162, 40, 111, 0.85), rgba(211, 113, 190, 0.85));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 1;
    margin-right: 15px;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 8px rgba(46, 134, 193, 0.3);
}

.admission-step-content {
    display: inline-block;
    width: calc(100% - 60px);
    vertical-align: top;
}

.admission-step-content strong {
    color: #333;
    font-size: 1.1rem;
    line-height: 1.5;
}

.admission-documents {
    margin: 15px 0 0 20px;
    padding: 0;
}

.admission-documents li {
    margin-bottom: 8px;
    color: #555;
    position: relative;
    padding-left: 10px;
}

.admission-documents li::before {
    content: "•";
    color: #2e86c1;
    font-weight: bold;
    margin-right: 8px;
}

/* File Download Section */
.admission-file-download-box {
    background: linear-gradient(135deg, #d691b9, #b287da, #c7a2b9);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    margin: 25px 0;
    border: 2px dashed #2e86c1;
    transition: all 0.3s ease;
}

.admission-file-download-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.admission-file-download-box h3 {
    color: #1a5276;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.admission-file-download-btn {
    display: inline-block;
    background-color: #fff;
    color: #a37d94;
    border: 1px solid #a37d94;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 82, 118, 0.3);
}

.admission-file-download-btn:hover {
    background: #e2dede;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 82, 118, 0.4);
    text-decoration: none;
    color: white;
}

/* Offer Features */
.admission-offer-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.admission-offer-card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border-top: 5px solid #2e86c1;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.admission-offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(46, 134, 193, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.admission-offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.admission-offer-card:hover::before {
    opacity: 1;
}

.admission-offer-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.admission-offer-card h3 {
    color: #1a5276;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.admission-offer-card p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Info Highlight */
.admission-info-highlight {
    background: linear-gradient(135deg, #1a5276 0%, #2e86c1 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    margin: 25px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.admission-info-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s infinite linear;
}

.admission-info-highlight h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.admission-info-highlight p {
    font-size: 1.1rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

@keyframes pulse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .admission-content-block {
        padding: 25px 20px;
        margin-bottom: 30px;
    }
    
    .admission-title {
        font-size: 2rem;
    }
    
    .admission-section-title {
        font-size: 1.7rem;
    }
    
    .admission-step {
        padding: 15px;
    }
    
    .admission-step-num {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .admission-step-content {
        width: calc(100% - 50px);
    }
    
    .admission-offer-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .admission-file-download-box {
        padding: 25px 20px;
    }
    
    .admission-info-highlight {
        padding: 30px 20px;
    }
    
    .admission-info-highlight h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .admission-content-block {
        padding: 20px 15px;
    }
    
    .admission-title {
        font-size: 1.7rem;
    }
    
    .admission-step {
        padding: 12px;
    }
    
    .admission-step-content strong {
        font-size: 1rem;
    }
    
    .admission-file-download-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

/* cccccccccccccccccc */
  .contact-page-wrapper {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            min-height: 100vh;
            padding: 40px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .contact-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            max-width: 1100px;
            width: 100%;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
        }
        
        .contact-details-panel {
            background: linear-gradient(145deg, #1a5276 0%, #2e86c1 100%);
            color: white;
            padding: 50px 40px;
            position: relative;
            overflow: hidden;
        }
        
        .contact-details-panel::before {
            content: "";
            position: absolute;
            top: -50px;
            right: -50px;
            width: 150px;
            height: 150px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
        }
        
        .contact-details-panel::after {
            content: "";
            position: absolute;
            bottom: -80px;
            left: -30px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
        }
        
        .panel-title {
            font-size: 28px;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        
        .panel-subtitle {
            font-size: 16px;
            opacity: 0.9;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }
        
        .contact-info-block {
            display: flex;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .contact-text h3 {
            font-size: 18px;
            margin-bottom: 5px;
        }
        
        .contact-text p {
            font-size: 15px;
            opacity: 0.9;
            line-height: 1.5;
        }
        
        .map-placeholder {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 20px;
            margin-top: 30px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
            z-index: 1;
        }
        
        .map-placeholder:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }
        
        .map-placeholder i {
            font-size: 24px;
            margin-bottom: 10px;
            display: block;
        }
        
        .contact-form-panel {
            padding: 50px 40px;
        }
        
        .form-header {
            margin-bottom: 30px;
        }
        
        .form-title {
            font-size: 26px;
            color: #1a5276;
            margin-bottom: 10px;
        }
        
        .form-description {
            color: #666;
            font-size: 15px;
        }
        
        .input-group {
            margin-bottom: 20px;
        }
        
        .input-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #444;
        }
        
        .required-star::after {
            content: " *";
            color: #e74c3c;
        }
        
        .form-input {
            width: 100%;
            padding: 14px 16px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 15px;
            transition: all 0.3s;
        }
        
        .form-input:focus {
            outline: none;
            border-color: #2e86c1;
            box-shadow: 0 0 0 3px rgba(46, 134, 193, 0.2);
        }
        
        .form-textarea {
            min-height: 130px;
            resize: vertical;
        }
        
        .submit-button {
            background: linear-gradient(135deg, #1a5276 0%, #2e86c1 100%);
            color: white;
            border: none;
            padding: 16px 30px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            width: 100%;
            margin-top: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .submit-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 7px 15px rgba(46, 134, 193, 0.3);
        }
        
        .submit-button i {
            margin-right: 8px;
        }
        
        .success-notification {
            display: none;
            background-color: #d4ffd4;
            color: #155724;
            padding: 15px;
            border-radius: 8px;
            margin-top: 20px;
            text-align: center;
            border-left: 4px solid #27ae60;
        }
        
        .newsletter-section {
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px solid #eee;
        }
        
        .newsletter-title {
            font-size: 18px;
            color: #1a5276;
            margin-bottom: 10px;
        }
        
        .newsletter-text {
            color: #666;
            font-size: 14px;
            margin-bottom: 15px;
        }
        
        .newsletter-form {
            display: flex;
            gap: 10px;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            font-size: 14px;
        }
        
        .newsletter-button {
            background-color: #27ae60;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 8px;
            cursor: pointer;
            transition: background-color 0.3s;
            font-weight: 600;
        }
        
        .newsletter-button:hover {
            background-color: #219653;
        }
        
        .contact-options {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-top: 30px;
        }
        
        .contact-option {
            text-align: center;
            padding: 20px 10px;
            border-radius: 10px;
            background-color: #f8f9fa;
            transition: all 0.3s;
            cursor: pointer;
        }
        
        .contact-option:hover {
            background-color: #e8f4fc;
            transform: translateY(-5px);
        }
        
        .option-icon {
            font-size: 24px;
            color: #1a5276;
            margin-bottom: 10px;
        }
        
        .option-title {
            font-size: 14px;
            color: #1a5276;
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        .option-description {
            font-size: 12px;
            color: #666;
        }
        
        @media (max-width: 900px) {
            .contact-card {
                grid-template-columns: 1fr;
            }
            
            .contact-details-panel {
                padding: 40px 30px;
            }
            
            .contact-form-panel {
                padding: 40px 30px;
            }
        }
        
        @media (max-width: 576px) {
            .contact-page-wrapper {
                padding: 20px 15px;
            }
            
            .input-row {
                grid-template-columns: 1fr;
            }
            
            .contact-options {
                grid-template-columns: 1fr;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .panel-title {
                font-size: 24px;
            }
            
            .form-title {
                font-size: 22px;
            }
        }