/* Modern Header CSS */
/* Modern Header Styles */
:root {
    --primary-color: #2a2a72;
    --secondary-color: #ff7f50;
    --highlight-color: #ff652f;
    --text-color: #fffcfc;
    --light-text: #fff;
    --header-bg: rgb(32, 47, 182);
    --transition: all 0.3s ease;
}
.body{
  background-color:#F4F6F8;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
     background-color:#003366;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    position: relative;
}

/* Logo with Image */
.logo-container {
    position: relative;
    display: flex;
    align-items: center;
    height: 50px;
}

.logo-image {
    height: 100%;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    transition: var(--transition);
}

.logo-highlight {
    position: absolute;
    bottom: -5px;
    right: -10px;
    width: 40%;
    height: 8px;
    background-color: var(--highlight-color);
    border-radius: 4px;
    z-index: -1;
    transform: rotate(-2deg);
    opacity: 0.8;
}

/* Curved Bottom Effect */
.header-curve {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 15px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23ffffff" opacity=".25"/></svg>');
    background-size: cover;
    pointer-events: none;
}


/* Desktop Navigation */
.desktop-nav {
    display: block;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
}

.nav-item {
    margin-left: 1.5rem;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover {
    color: var(--secondary-color);
}

.nav-link.active {
    color: whitesmoke;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--highlight-color);
    border-radius: 2px;
}

/* CTA Button */
.cta-button {
    background-color: var(--secondary-color);
    color: var(--light-text) !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 25px;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: var(--highlight-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: whitesmoke;
    border-radius: 3px;
    transition: var(--transition);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
     background-color: #6b6f7dea;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    z-index: 1000;
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
}

.mobile-nav-item {
    margin-bottom: 1.5rem;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--light-text);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    display: block;
    padding: 0.5rem 0;
}

.mobile-nav-link:hover {
    color: var(--secondary-color);
}

.mobile-nav-link.active {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Curved Header Effect */
.header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: radial-gradient(circle at 50% 0%, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    background-size: 100% 20px;
    pointer-events: none;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav-item {
        margin-left: 1rem;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-container {
        padding: 1rem;
    }
    
    /* Animate hamburger to X when mobile nav is active */
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}
/* Banner Styles */
.banner {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 50px;
  overflow: hidden;
  background-color: #003366;
}

.banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.banner-content {
  flex: 1;
  max-width: 600px;
  z-index: 2;
}

.banner-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}

.title-part {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.title-part:nth-child(1) {
  animation-delay: 0.2s;
}

.title-part:nth-child(2) {
  animation-delay: 0.4s;
}

.title-part:nth-child(3) {
  animation-delay: 0.6s;
}

.banner-text {
  font-size: 1.1rem;
  color: var(--light-text);
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s 0.8s forwards;
}

.banner-btns {
  display: flex;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s 1s forwards;
}

.btn {
  padding: 0.8rem 1.8rem;
  border-radius: 5px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.primary-btn {
  background-color: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
  background-color: #FFC300;
}

.primary-btn:hover {
 background-color: black;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px  #FFFFFF;
}

.secondary-btn {
  background-color: transparent;
  color:  #FFFFFF;
  border: 2px solid var(--primary-color);
  background-color: #FFC300;
}

.secondary-btn:hover {
 background-color: black;
  transform: translateY(-3px);
  color: whitesmoke;
  box-shadow: 0 6px 15px  #FFFFFF;
}

.banner-image {
  flex: 1;
  position: relative;
  height: 500px;
  z-index: 1;
}

.tech-circle {
  position: absolute;
  top: 15%;
  left: 20%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: linear-gradient(135deg, #003366  0%, #00509E 100%);
  animation: pulse 6s infinite alternate;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.element {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-color);
  background-color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: float 6s infinite ease-in-out;
}

.element-1 {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.element-2 {
  top: 60%;
  left: 10%;
  animation-delay: 1s;
}

.element-3 {
  top: 30%;
  right: 15%;
  animation-delay: 2s;
}

.element-4 {
  bottom: 10%;
  right: 20%;
  animation-delay: 3s;
}

.animated-dots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.dot {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(37, 99, 235, 0.05);
  animation: move 15s linear infinite;
}

.dot-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.dot-2 {
  width: 150px;
  height: 150px;
  top: 70%;
  left: 80%;
  animation-delay: 2s;
}

.dot-3 {
  width: 200px;
  height: 200px;
  top: 30%;
  left: 60%;
  animation-delay: 4s;
}

.dot-4 {
  width: 80px;
  height: 80px;
  top: 80%;
  left: 10%;
  animation-delay: 6s;
}

.dot-5 {
  width: 120px;
  height: 120px;
  top: 20%;
  left: 80%;
  animation-delay: 8s;
}

/* Animations */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
      transform: translate(-50%, -50%) scale(1);
  }
  100% {
      transform: translate(-50%, -50%) scale(1.1);
  }
}

@keyframes float {
  0%, 100% {
      transform: translateY(0) rotate(0deg);
  }
  50% {
      transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes move {
  0% {
      transform: translateY(0) translateX(0);
  }
  25% {
      transform: translateY(-50px) translateX(50px);
  }
  50% {
      transform: translateY(0) translateX(100px);
  }
  75% {
      transform: translateY(50px) translateX(50px);
  }
  100% {
      transform: translateY(0) translateX(0);
  }
}
/* Enhanced Animation CSS */
.cmit-animation {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  width: 100%;
}

.cmit-logo-wrapper {
  position: relative;
  display: flex;
  margin-bottom: 5px;
}

.cmit-letter {
  font-size: 5rem;
  font-weight: 800;
  color: var(--primary-color);
  display: inline-block;
  margin: 0 -5px;
  opacity: 0;
  transform: scale(0.5) rotate(-30deg);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.15);
  position: relative;
}

.cmit-letter:nth-child(1) { 
  animation: letterPop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.8s forwards, float 4s ease-in-out 1.6s infinite; 
  color: #ffffff;
}
.cmit-letter:nth-child(2) { 
  animation: letterPop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.9s forwards, float 4s ease-in-out 1.7s infinite; 
  color: #FFC300;
  top: -5px;
}
.cmit-letter:nth-child(3) { 
  animation: letterPop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.0s forwards, float 4s ease-in-out 1.8s infinite; 
  color: #ffffff;
}
.cmit-letter:nth-child(4) { 
  animation: letterPop 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.1s forwards, float 4s ease-in-out 1.9s infinite; 
  color: #FFC300;
  top: 5px;
}

.country-name {
  display: flex;
  margin-top: 15px;
  background: #FFC300;
  padding: 8px 15px;
  border-radius: 30px;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.country-letter {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--secondary-color);
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  color: whitesmoke;
}

.country-letter:nth-child(1) { animation: letterFadeIn 0.5s ease-out 1.4s forwards; }
.country-letter:nth-child(2) { animation: letterFadeIn 0.5s ease-out 1.5s forwards; }
.country-letter:nth-child(3) { animation: letterFadeIn 0.5s ease-out 1.6s forwards; }
.country-letter:nth-child(4) { animation: letterFadeIn 0.5s ease-out 1.7s forwards; }
.country-letter:nth-child(5) { animation: letterFadeIn 0.5s ease-out 1.8s forwards; }
.country-letter:nth-child(6) { animation: letterFadeIn 0.5s ease-out 1.9s forwards; }
.country-letter:nth-child(7) { animation: letterFadeIn 0.5s ease-out 2.0s forwards; }
.country-letter:nth-child(8) { animation: letterFadeIn 0.5s ease-out 2.1s forwards; }
.country-letter:nth-child(9) { animation: letterFadeIn 0.5s ease-out 2.2s forwards; }
.country-letter:nth-child(10) { animation: letterFadeIn 0.5s ease-out 2.3s forwards; }

.animated-bars {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 8px;
  display: flex;
  gap: 10px;
  justify-content: center;
  color: whitesmoke;
}

.bar {
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 4px;
  opacity: 0;
  transform: translateY(20px);
  background-color: whitesmoke;
}

.bar-1 { animation: barRise 0.6s ease-out 2.4s forwards; }
.bar-2 { animation: barRise 0.6s ease-out 2.5s forwards; }
.bar-3 { animation: barRise 0.6s ease-out 2.6s forwards; }
.bar-4 { animation: barRise 0.6s ease-out 2.7s forwards; }

.floating-tech-icons {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.tech-icon {
  position: absolute;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  opacity: 0;
  animation: floatTech 8s linear infinite;
}

.tech-icon:nth-child(1) {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
  animation-duration: 12s;
  color: whitesmoke;
}
.tech-icon:nth-child(2) {
  top: 65%;
  left: 80%;
  animation-delay: 2s;
  animation-duration: 14s;
  color: whitesmoke;
}
.tech-icon:nth-child(3) {
  top: 40%;
  left: 85%;
  animation-delay: 4s;
  animation-duration: 10s;
  color: whitesmoke;
}
.tech-icon:nth-child(4) {
  top: 75%;
  left: 10%;
  animation-delay: 6s;
  animation-duration: 16s;
  color: whitesmoke;
}

/* New Animations */
@keyframes letterPop {
  0% {
      opacity: 0;
      transform: scale(0.5) rotate(-30deg);
  }
  70% {
      opacity: 1;
      transform: scale(1.1) rotate(5deg);
  }
  100% {
      opacity: 1;
      transform: scale(1) rotate(0deg);
  }
}

@keyframes letterFadeIn {
  0% {
      opacity: 0;
      transform: translateY(20px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes barRise {
  0% {
      opacity: 0;
      transform: translateY(20px);
      height: 8px;
  }
  50% {
      opacity: 1;
      transform: translateY(-15px);
      height: 30px;
  }
  100% {
      opacity: 1;
      transform: translateY(0);
      height: 8px;
  }
}

@keyframes floatTech {
  0% {
      opacity: 0;
      transform: translateY(0) translateX(0) rotate(0deg);
  }
  10% {
      opacity: 1;
  }
  90% {
      opacity: 1;
  }
  100% {
      opacity: 0;
      transform: translateY(-100px) translateX(50px) rotate(360deg);
  }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .cmit-letter {
      font-size: 4rem;
  }
  .banner{
    margin-top: -80px;
  }
  .country-letter {
      font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .cmit-letter {
      font-size: 3rem;
      margin: 0 -3px;
  }
  .country-letter {
      font-size: 0.9rem;
  }
  .country-name {
      padding: 5px 10px;
  }
  .animated-bars {
      bottom: -30px;
  }
}

@media (max-width: 480px) {
  .cmit-letter {
      font-size: 2.2rem;
  }
  .country-letter {
      font-size: 0.8rem;
  }
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
  .banner .container {
      flex-direction: column;
      text-align: center;
      padding-top: 100px;
  }
  
  .banner-content {
      max-width: 100%;
  }
  
  .banner-title {
      font-size: 2.5rem;
  }
  
  .banner-btns {
      justify-content: center;
  }
  
  .banner-image {
      height: 400px;
      margin-top: 2rem;
  }
  
  .tech-circle {
      width: 300px;
      height: 300px;
  }
}

@media (max-width: 768px) {
  .nav-list {
      position: fixed;
      top: 80px;
      left: -100%;
      width: 80%;
      height: calc(100vh - 80px);
      background-color: white;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
      transition: all 0.5s ease;
      box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .nav-list.active {
      left: 0;
  }
  
  .hamburger {
      display: flex;
  }
  
  .hamburger.active .bar:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
  }
  
  .hamburger.active .bar:nth-child(2) {
      opacity: 0;
  }
  
  .hamburger.active .bar:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
  }
  
  .banner-title {
      font-size: 2rem;
  }
  
  .banner-text {
      font-size: 1rem;
  }
  
  .btn {
      padding: 0.6rem 1.4rem;
  }
}

@media (max-width: 480px) {
  .banner-title {
      font-size: 1.8rem;
  }
  
  .banner-btns {
      flex-direction: column;
      gap: 0.8rem;
  }
  
  .banner-image {
      height: 300px;
  }
  
  .tech-circle {
      width: 250px;
      height: 250px;
  }
  
  .element {
      width: 50px;
      height: 50px;
      font-size: 1.2rem;
  }
}

/* Services Section Styles */
.services-section {
  position: relative;
  padding: 6rem 0;
  background-color: #FFFFFF;
  overflow: hidden;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
  color:  #ffffff ;
}

.section-title span {
  color:  #ffffff ;
  position: relative;
}

.section-title span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgb(255, 255, 255);
  z-index: -1;
  animation: underlineGrow 1.5s ease-out forwards;
}

.section-subtitle1 {
  text-align: center;
  font-size: 1.5rem;
 color: #007BFF;
    border-bottom: 3px solid #007BFF;
    padding-bottom: 5px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background:  #003366;
  border-radius: 15px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
 
}


.service-card:hover {
  transform: translateY(-10px);
 background: linear-gradient(135deg, #ffffff, #ffffff);

}

/* Service Icon Container */
.service-icon {
    text-align: center;
    margin-bottom: 20px;
}

/* Icon Circle */
.icon-circle {
    width: 100px;
    height: 100px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    transition: transform 0.3s;
}

/* Image Icon */
.icon-circle img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* Hover Effect */
.icon-circle:hover {
    transform: scale(1.1);
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .icon-circle {
        width: 80px;
        height: 80px;
    }

    .icon-circle img {
        width: 50px;
        height: 50px;
    }
}

.service-title {
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  color: #ffffff;
}

.service-description {
  color: #ffffff;
  text-align: center;
  line-height: 1.6;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.service-hover-effect {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(2, 27, 66, 0.83) 0%, rgba(113, 54, 197, 0.174) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.service-card:hover .service-hover-effect {
  opacity: 1;
color: #333;
}

.animated-dots {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 5px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(58, 134, 255, 0.3);
  opacity: 0;
}

.service-card:hover .dot:nth-child(1) {
  animation: dotFade 1.5s infinite;
}
.service-card:hover .dot:nth-child(2) {
  animation: dotFade 1.5s 0.2s infinite;
}
.service-card:hover .dot:nth-child(3) {
  animation: dotFade 1.5s 0.4s infinite;
}

/* Floating background shapes */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(58, 134, 255, 0.05) 0%, rgba(131, 56, 236, 0.05) 100%);
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
  animation: float 15s infinite linear;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: -50px;
  animation: float 12s 3s infinite linear reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  right: 10%;
  animation: float 10s 5s infinite linear;
}

.shape-4 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 10%;
  animation: float 8s 2s infinite linear reverse;
}

/* Animations */
@keyframes underlineGrow {
  from {
      transform: scaleX(0);
  }
  to {
      transform: scaleX(1);
  }
}

@keyframes pulse {
  0% {
      transform: scale(1);
      opacity: 0.7;
  }
  100% {
      transform: scale(1.1);
      opacity: 1;
  }
}

@keyframes dotFade {
  0%, 100% {
      opacity: 0.3;
      transform: translateY(0);
  }
  50% {
      opacity: 1;
      transform: translateY(-5px);
  }
}

@keyframes float {
  0% {
      transform: translateY(0) rotate(0deg);
  }
  25% {
      transform: translateY(-20px) rotate(5deg);
  }
  50% {
      transform: translateY(0) rotate(0deg);
  }
  75% {
      transform: translateY(20px) rotate(-5deg);
  }
  100% {
      transform: translateY(0) rotate(0deg);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .services-section {
      padding: 4rem 0;
  }
  
  .section-title {
      font-size: 2.2rem;
  }
  
  .section-subtitle {
      font-size: 1rem;
      margin-bottom: 2rem;
  }
  
  .services-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }
  
  .service-card {
      padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .section-title {
      font-size: 1.8rem;
  }
  
  .service-icon {
      width: 70px;
      height: 70px;
  }
  
  .service-title {
      font-size: 1.2rem;
  }
}

/* Who i am */
.who-we-are {
  background-color:#F2F2F2 ;
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}

.wwa-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.wwa-content {
  flex: 1;
  min-width: 300px;
  animation: fadeInLeft 1s ease-out;
}

.wwa-title {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.wwa-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 70px;
  height: 4px;
  background: #3498db;
  border-radius: 2px;
}

.wwa-text {
  margin-bottom: 30px;
}

.wwa-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333333 ;
}

.wwa-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.7);
  padding: 10px 15px;
  border-radius: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.highlight-item:hover {
  transform: translateY(-5px);
}

.highlight-icon {
  font-size: 1.2rem;
}

.highlight-text {
  font-weight: 500;
  color: #333333 ;
}

.wwa-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color:#003366;
}

.cmit-logo {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.384);
  animation: logoFloat 3s ease-in-out infinite, fadeInRight 1s ease-out;
  transition: transform 0.3s ease;
}

.cmit-logo:hover {
  transform: scale(1.05);
}

@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);
  }
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@media (max-width: 768px) {
  .wwa-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .wwa-title {
    font-size: 2rem;
  }
  
  .wwa-text p {
    font-size: 1rem;
  }
  
  .wwa-highlights {
    justify-content: center;
  }
  
  .cmit-logo {
    max-width: 80%;
  }
}

/* galary section */
.pixelflow-gallery {
  background-color:#F2F2F2 ;
  padding: 60px 0;
  overflow: hidden;
  position: relative;
    
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title span {
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

 .cmit-gallery {
            max-width: 800px;
            margin: 0 auto;
            padding: 30px 20px;
            position: relative;
        }

        .cmit-slideshow {
            position: relative;
            height: 450px;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .cmit-slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .cmit-slide.active {
            opacity: 1;
        }

        .cmit-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cmit-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.7);
            color: white;
            padding: 15px;
            transform: translateY(100%);
            transition: transform 0.5s ease;
        }

        .cmit-slide.active .cmit-caption {
            transform: translateY(0);
        }

        .cmit-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 15px;
        }

        .cmit-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ccc;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .cmit-dot.active {
            background: #3498db;
            transform: scale(1.2);
        }

        @media (max-width: 768px) {
            .cmit-slideshow {
                height: 350px;
            }
              .section-title {
        font-size: 2rem;
    }
        }

        @media (max-width: 576px) {
            .cmit-slideshow {
                height: 250px;
            }
              .section-title {
        font-size: 2rem;
    }
        }



/* c section */
.premium-courses {
   background-color:  #FFFFFF;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;

}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 15px;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #ffffff;
  border-radius: 2px;
}

.section-subtitle1 {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #333333 ;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.course-card {
    background-color:#003366 ;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.course-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.course-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #e74c3c;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  z-index: 2;
}

.course-image {
  height: 200px;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.course-card:hover .course-image img {
  transform: scale(1.1);
}

.course-content {
  padding: 20px;
}

.course-content h3 {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 10px;
}

.course-desc {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.5;
}

.course-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #ffffff;
}

.course-price {
  margin: 20px 0;
}

.original-price {
  text-decoration: line-through;
  color: #ff0000;
  font-size: 1rem;
  margin-right: 10px;
}

.current-price {
  font-size: 1.4rem;
  font-weight: bold;
  color: #ffffff;
}

.enroll-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(to right, #0f27c4, #FFC300 );
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.enroll-btn:hover {
  background: linear-gradient(to right, #2980b9, #27ae60);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.view-all {
  text-align: center;
  margin-top: 30px;
}

.view-all-btn {
  padding: 12px 30px;
  background: transparent;
  color: #3498db;
  border: 2px solid #3498db;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: #3498db;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .courses-grid {
    grid-template-columns: 1fr;
  }
}

/* Team section*/
/* Font Awesome for icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

.our-team {
  background-color: #F4F6F8 ;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
  position: relative;
}

.section-title span {
  color: #3498db;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #3498db;
  border-radius: 2px;
}



/* Team Leader Styles */
.team-leader {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.leader-card {
  display: flex;
  background:#003366;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.leader-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.leader-image {
  position: relative;
  width: 300px;
  overflow: hidden;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.leader-card:hover .leader-image img {
  transform: scale(1.05);
}

.social-links {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.leader-card:hover .social-links {
  opacity: 1;
  transform: translateY(0);
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  transition: all 0.3s ease;
}

.social-link:hover {
  transform: translateY(-5px);
}

.social-link.fb:hover {
  background: #000000;
}

.social-link.github:hover {
  background: #333;
}

.social-link.web:hover {
  background: #3498db;
}

.leader-info {
  padding: 30px;
  flex: 1;
}

.leader-info h3 {
  font-size: 1.8rem;
  color: #FFC300;
  margin-bottom: 5px;
}

.position {
  color: #fbfbfb;
  font-weight: bold;
  margin-bottom: 10px;
}

.expertise {
  color: #ffffff;
  font-style: italic;
  margin-bottom: 15px;
}

.bio {
  color: #ffffff;
  line-height: 1.6;
}

/* Team Members Styles */
.team-members {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.member-card {
  background:#003366;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.member-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.member-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.member-card:hover .member-image img {
  transform: scale(1.1);
}

.member-card .social-links {
  bottom: 15px;
  gap: 10px;
}

.member-info {
  padding: 20px;
  text-align: center;
}

.member-info h3 {
  font-size: 1.2rem;
  color: #FFC300;
  margin-bottom: 5px;
}

.member-info .position {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.member-info .expertise {
  font-size: 1.2rem;
  color: #ffae00;
}

/* View All Button */
.view-all {
  text-align: center;
  margin-top: 30px;
}

.view-all-btn {
  padding: 12px 30px;
  background: transparent;
  color: #3498db;
  border: 2px solid #3498db;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: #3498db;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .leader-card {
    flex-direction: column;
    max-width: 400px;
  }
  
  .leader-image {
    width: 100%;
    height: 300px;
  border-radius: 15px 15px 0 0;
  overflow: hidden;
  margin-bottom: 0;
  padding-bottom: 0;
  }
  
  .leader-info {
    padding: 20px;
  }
  
  .leader-info h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .team-members {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 576px) {
  .team-members {
    grid-template-columns: 1fr;
  }
  
  .member-card {
    max-width: 300px;
    margin: 0 auto;
  }
}
/* contact section */
/* Font Awesome for icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

.contact-section {
  background-color: #ffffff ;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title span {
  color: #3498db;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #3498db;
  border-radius: 2px;
}



.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.info-card {
  background:#003366;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.info-card.animated {
  opacity: 1;
  transform: translateY(0);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: #3498db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.info-content h3 {
  font-size: 1.3rem;
  color: #FFC300;
  margin-bottom: 10px;
}

.info-content a, .info-content p {
  color: #ffffff;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: #3498db;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background: white;
  border-radius: 10px;
  padding: 30px;
  
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.contact-form.animated {
  opacity: 1;
  transform: translateY(0);
}

.contact-form:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
  outline: none;
}

.submit-btn {
  background: linear-gradient(to right, #3498db, #2ecc71);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.submit-btn:hover {
  background: linear-gradient(to right, #2980b9, #27ae60);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .info-card {
    padding: 20px;
  }
  
  .info-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .contact-content {
    flex-direction: column;
  }
  
  .info-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .info-icon {
    margin-bottom: 15px;
  }
}


/* footer section */
/* Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

.cmit-footer {
  position: relative;
  background: linear-gradient(135deg, #2c3e50, #3498db);
  color: white;
  padding-top: 100px;
  overflow: hidden;
}

.cmit-footer-wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23f8f9fa" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%23f8f9fa" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23f8f9fa"/></svg>');
  background-size: cover;
  background-repeat: no-repeat;
  transform: rotate(180deg);
}

.cmit-footer-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cmit-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 60px;
}

.cmit-brand-box {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cmit-logo-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
  padding: 25px 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  margin-top: -40px;
}

.cmit-footer-logo {
  margin-top: 60px;
  height: 70px;
  
  transition: all 0.4s ease;
}

.cmit-footer-logo:hover {
  transform: scale(1.08) translateY(5px);
  filter: brightness(0) invert(1) drop-shadow(0 5px 12px rgba(0,0,0,0.25));
}

.cmit-about-text {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 20px 0;
  text-align: center;
  width: 100%;
  font-size: 0.95rem;
}

.cmit-social-box {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cmit-social-link {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
}

.cmit-social-link:hover {
  background: #3498db;
  transform: translateY(-5px) scale(1.1);
}

.cmit-footer-title {
    background-color: var(--secondary-color);
    color: var(--light-text) !important;
    padding: 0.5rem 1.2rem !important;
    border-radius: 25px;
    transition: var(--transition);
   width: 120px;  /* Set fixed width */
    /* Set fixed height */
}

.cmit-footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: #3498db;
}

.cmit-links-list, .cmit-services-list {
  list-style: none;
  padding: 0;
}

.cmit-links-list li, .cmit-services-list li {
  margin-bottom: 12px;
}

.cmit-links-list a, .cmit-services-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
  display: inline-block;
}

.cmit-links-list a::before, .cmit-services-list a::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #3498db;
  opacity: 0;
  transition: all 0.3s ease;
}

.cmit-links-list a:hover, .cmit-services-list a:hover {
  color: white;
  padding-left: 20px;
}

.cmit-links-list a:hover::before, .cmit-services-list a:hover::before {
  opacity: 1;
}

.cmit-contact-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.cmit-contact-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.cmit-contact-list i {
  margin-right: 12px;
  color: #3498db;
  width: 20px;
  text-align: center;
  font-size: 1rem;
}

.cmit-newsletter-title {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.cmit-newsletter-form {
  display: flex;
  border-radius: 30px;
  overflow: hidden;
}

.cmit-newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  font-size: 14px;
  outline: none;
}

.cmit-newsletter-form button {
  width: 50px;
  background: #3498db;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cmit-newsletter-form button:hover {
  background: #2980b9;
}

.cmit-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.cmit-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.cmit-legal-links {
  display: flex;
  gap: 20px;
}

.cmit-legal-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.cmit-legal-links a:hover {
  color: white;
}

.cmit-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Animations */
.footer-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.footer-animate.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes cmit-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .cmit-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .cmit-footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .cmit-legal-links {
    justify-content: center;
  }
  
  .cmit-logo-wrap {
    margin-top: -30px;
  }
}

@media (max-width: 576px) {
  .cmit-footer-grid {
    grid-template-columns: 1fr;
  }
  
  .cmit-footer-title {
    font-size: 1.2rem;
  }
  
  .cmit-footer-logo {
    height: 55px;
  }
}


