
:root {

  --main-color:#007cf0;
      --secondary-color: #00dfd8;
      --accent-color: #ff7e5f;
      --dark-color: #0a192f;
      --light-color: #f8f9fa;
       --transition: all 0.3s ease;
        --gray: #6c757d;
    }
    
    
    
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family:  Arial, sans-serif;
}

body {
  max-width: 2000px;
  margin: 0 auto;
  line-height: 1.9;
  font-size: 15px;
  color: #6b6d6f;
}

body.preload {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}

.main-color { color: #082d5a; }
.white { color: #fff; }

Typography
h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #323336;
  color:linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 0;
}

h1 { font-size: 44px!important; line-height: 45px; margin: 40px 0 32px 0; }
h2 { font-size: 36px!important; line-height: 32px; margin: 30px 0 50px 0; }
h3 { font-size: 28px; line-height: 33px; margin: 26px 0 16px 0; }
h4 { font-size: 24px; line-height: 25px; margin: 21px 0 19px 0; }
h5 { font-size: 20px; line-height: 25px; margin: 18px 0 13px 0; }
h6 { font-size: 18px; line-height: 18px; margin: 18px 0 13px 0; }



h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: black;
  position: relative;
  /* display: inline-block; */
}

p {
  color: var(--gray);
  margin-bottom: 15px!important;
  text-align: justify;
}

strong { font-weight: 500; }

/* ========== PRELOADER ========== */
.preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  min-width: 100vw;
  min-height: 100vh;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000000;
}

.preloader-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  transform: translateY(-80px);
}

/* ========== NAVIGATION ========== */
nav {
  background: #ffffff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all 0.3s ease;
  
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1.5rem;
}

.menu-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo img {
  max-height: 50px;
}

.menu-wrap {
  display: flex;
  align-items: center;
  
}

.menu {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-item a {
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  /* color: #1a1a1a; */
  color: black;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.menu-item a:hover {
  background: #e3f2fd;
  transform: rotateX(10deg) rotateY(10deg) scale(1.05);
}

/* Search Bar */
.search-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #f0f0f0;
  padding: 0.4rem 1rem;
  border-radius: 30px;
  border-color: #6c757d;
  transition: all 0.3s ease;
}

.search-bar input {
  border: none;
  background: transparent;
  outline: none;
  padding: 0.3rem;
  width: 150px;
}

.search-icon {
  color: #1d8cf8;
  cursor: pointer;
}

/* Menu Toggle - Mobile */
.menu-toggle {
  display: none;
  cursor: pointer;
}

.menu-icon span {
  display: block;
  width: 25px;
  height: 3px;
  margin-bottom: 5px;
  background: #1a1a1a;
  border-radius: 5px;
  transition: 0.4s;
}

/* Responsive */
@media (max-width: 992px) {
  .menu-wrap {
    width: 100%;
    display: none;
    flex-direction: column;
    background: #ffffff;
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  }

  .menu-wrap.active {
    display: flex;
  }

  .menu {
    flex-direction: column;
    width: 100%;
  }

  .search-bar {
    margin-top: 1rem;
    width: 100%;
  }

  .menu-toggle {
    display: block;
  }
}

    
    
    /* Navigation */
   
    
   
        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,0 L100,0 L100,100 L0,100 Z" fill="none" stroke="%23007cf0" stroke-width="0.5" stroke-opacity="0.2"/></svg>');
            background-size: 50px 50px;
            opacity: 0.3;
        }

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

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            /* background: linear-gradient(90deg, var(--primary), var(--secondary)); */
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: textFloat 3s ease-in-out infinite alternate;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--dark);
        }

        .hero-buttons {
            display: flex;
            margin-top: 30px;
        }

        .floating-shapes {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--primary), var(--secondary));
            opacity: 0.1;
            animation: float 15s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            100% {
                transform: translateY(-1000px) rotate(720deg);
            }
        }

        @keyframes textFloat {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-10px);
            }
        } */

    
    /* About Section */
    .about-container {
      position: relative;
      padding: 100px 0;
      overflow: hidden;
    }
    
    .about-shapes {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: -1;
    }
    
    .shape {
      position: absolute;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--main-color), var(--secondary-color));
      opacity: 0.1;
      animation: float 6s infinite ease-in-out;
    }
    
    .shape-one {
      width: 300px;
      height: 300px;
      top: -100px;
      left: -100px;
      animation-delay: 0s;
    }
    
    .shape-two {
      width: 200px;
      height: 200px;
      bottom: -50px;
      right: -50px;
      animation-delay: 2s;
    }
    
    .shape-three {
      width: 150px;
      height: 150px;
      top: 40%;
      right: 10%;
      animation-delay: 4s;
    }
    
    .about-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    
    .about-text {
      flex: 1;
      padding-right: 50px;
    }
    
    .about-image {
      flex: 1;
      perspective: 1000px;
    }
    
    .img-tilt {
      width: 100%;
      border-radius: 15px;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      transform-style: preserve-3d;
      transition: transform 0.5s ease, box-shadow 0.5s ease;
    }
    
    .img-tilt:hover {
      transform: rotateY(10deg) rotateX(5deg) scale(1.03);
      box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
    }
    
    .highlight {
      color: var(--main-color);
      font-weight: 700;
    }
    
    /* Testimonials */
   .testimonials-section {
  background: linear-gradient(to right, #f8fbff, #ffffff);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.testimonial-card {
  background: transparent;
  width: 300px;
  height: 400px;
  perspective: 1000px;
  cursor: pointer;
}

.testimonial-card > div {
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
  position: relative;
}

.testimonial-card:hover > div {
  transform: rotateY(180deg);
}

.testimonial-front,
.testimonial-back {
  position: absolute;
  backface-visibility: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 30px;
  background: white;
  text-align: center;
}

.testimonial-front {
  z-index: 2;
}

.testimonial-front img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 4px solid #007bff;
}

.testimonial-front h3 {
  font-size: 1.4rem;
  color: #333;
  margin: 10px 0 5px;
}

.testimonial-front p {
  font-size: 1rem;
  color: #777;
}

.testimonial-back {
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-back blockquote {
  font-style: italic;
  color: #444;
  font-size: 1.05rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .testimonial-card {
    width: 90%;
  }
}

    /* Vision Section */
    .vision-section {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, #ffffff 0%, #f9f9ff 100%);
    }
    
    .vision-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
      z-index: 2;
    }
    
    .vision-text {
      flex: 1;
      padding-right: 50px;
    }
    
    .vision-image {
      flex: 1;
      perspective: 1000px;
    }
    
    .vision-image img {
      width: 70%;
      border-radius: 15px;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      transform-style: preserve-3d;
      transition: all 0.5s ease;
    }
    
    .vision-image img:hover {
      transform: rotateY(15deg) scale(1.05);
    }
    
    .floating-shape {
      position: absolute;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--main-color), var(--secondary-color));
      opacity: 0.1;
      animation: float 8s infinite ease-in-out;
      z-index: 1;
    }
    
    .shape1 {
      width: 400px;
      height: 400px;
      top: -150px;
      right: -150px;
    }
    
    .shape2 {
      width: 300px;
      height: 300px;
      bottom: -100px;
      left: -100px;
      animation-delay: 2s;
    }
    
    /* Placement Section */
    .placement-section {
      padding: 100px 0;
      background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
      position: relative;
    }
    
    .placement-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    
    .placement-text {
      flex: 1;
      padding-right: 50px;
    }
    
    .placement-image {
      flex: 1;
      perspective: 1000px;
    }
    
    .placement-image img {
      width: 100%;
      border-radius: 15px;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
      transform-style: preserve-3d;
      transition: all 0.5s ease;
    }
    
    .placement-image img:hover {
      transform: rotateX(10deg) scale(1.05);
    }
    
    /* Advantage Section */
    .advantage-section {
      padding: 100px 0;
      position: relative;
      overflow: hidden;
    }
    
    .advantage-item-3d {
      background: white;
      padding: 20px;
      margin-bottom: 20px;
      border-radius: 10px;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      transform-style: preserve-3d;
      position: relative;
      display: flex;
      align-items: center;
      min-height: 80px;
    }
    
    .advantage-item-3d::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 5px;
      height: 100%;
      background: linear-gradient(to bottom, var(--main-color), var(--secondary-color));
      border-radius: 10px 0 0 10px;
    }
    
    .advantage-item-3d:hover {
      transform: translateY(-5px) rotateY(5deg);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    /* Animations */
    @keyframes float {
      0% {
        transform: translateY(0) rotate(0deg);
      }
      50% {
        transform: translateY(-20px) rotate(5deg);
      }
      100% {
        transform: translateY(0) rotate(0deg);
      }
    }
    
    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes fadeInLeft {
      from {
        opacity: 0;
        transform: translateX(-50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    @keyframes fadeInRight {
      from {
        opacity: 0;
        transform: translateX(50px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    .fade-left {
      animation: fadeInLeft 1s ease forwards;
    }
    
    .fade-right {
      animation: fadeInRight 1s ease forwards;
    }
    
   
   
        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeIn 1s ease forwards;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        .delay-3 {
            animation-delay: 0.6s;
        }

        .delay-4 {
            animation-delay: 0.8s;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(var(--primary), var(--secondary));
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }



        .testimonials-glass {
  padding: 100px 20px;
  background: linear-gradient(to bottom right, #f4f7fa, #e2ecf3);
  text-align: center;
  font-family:  Arial, sans-serif;
  overflow: hidden;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 60px;
 color: linear-gradient(to bottom, #4e54c8, #8f94fb);
}

.testimonial-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.testimonial-glass {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 40px 30px;
  width: 100%;
  max-width: 500px;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.testimonial-glass:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-4deg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.avatar {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
  border: 4px solid #fff;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease;
}

.testimonial-glass:hover .avatar {
  transform: scale(1.1);
}

.testimonial-content .quote {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  text-align: left;
}

.testimonial-content .author {
  font-weight: 600;
  font-size: 1.1rem;
  color: #111;
}

.testimonial-content .role {
  font-size: 0.9rem;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
