*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;

}

body{
  background: linear-gradient(135deg, #e4f5fc, #ffffff);

}
/* ========= NavBar========= */

#navbar {
  background: linear-gradient(135deg, #e4f5fc, #ffffff);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    transition: all 0.3s;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #0e3c5f;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    position: relative;
}

.nav-links a:hover, 
.nav-links .active {
    color: linear-gradient(135deg, #06ace9, #dd0416); 
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background:linear-gradient(135deg, #06ace9, #dd0416);
    bottom: -5px;
    left: 0;
    transition: 0.3s;
}

.nav-links a:hover::after,
.nav-links .active::after {
    width: 100%;
}

/* ========= Hero Section ======== */
#hero {
    height: 100vh;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 80%;
    max-width: 800px;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(to right, #06ace9, #dd0416);
    color: white;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.cta-btn:hover {
  background-position: right center;
  transform: scale(1.05);
}

/* Control Slider */
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-controls button {
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    transition: all 0.3s;
}

.slider-controls button:hover {
    background: rgba(0,0,0,0.8);
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.slider-indicators .indicator.active {
    background: #dd0416;
    transform: scale(1.2);
}

/* ========= Screens ========= */
@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        background:  linear-gradient(135deg, #e4f5fc, #ffffff);
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        transition: 0.4s;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }
    
    .bar {
        width: 25px;
        height: 3px;
        background: linear-gradient(135deg, #06ace9, #dd0416);
;
        margin: 3px 0;
        transition: 0.4s;
    }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
    
    #hero {
        margin-top: 60px;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .cta-btn {
        padding: 10px 20px;
    }
}

@media (max-width: 576px) {
    .slider-controls button {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .slider-indicators .indicator {
        width: 10px;
        height: 10px;
    }
}
 
  /* background: linear-gradient(135deg, #e0f7fa, #ffffff); */
/* === Services Section === */
.tm-services {
  padding: 100px 20px;
  background: linear-gradient(135deg, #eef8fc, #ffffff);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-title {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-title h2 {
  font-size: 2.8rem;
  color: #0e3c5f;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title h2:hover{
    transform: scale(1.05);
  background: linear-gradient(90deg, #06ace9, #0e3c5f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title h2 span {
  color: #06ace9;
}

.section-title p {
  font-size: 1.2rem;
  color: #666;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* Service Card */
.service-card {
  background: white;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Icon */
.service-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #06ace9, #dd0416);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: 0.3s ease;
}

.service-icon i {
  font-size: 30px;
  color: #fff;
}

/* Text Content */
.service-content h3 {
  font-size: 1.4rem;
  color: #0e3c5f;
  margin-bottom: 12px;
  font-weight: 700;
}

.service-content p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}


.section-title {
  font-size: 28px;
  color: #222;
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.section-title:hover {
  transform: scale(1.05);
  text-shadow: 0 4px 10px rgba(0,0,0,0.2);
  color: #007bff;
}


/* CTA Button */
.service-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 36px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to right, #06ace9, #dd0416);
  border: none;
  border-radius: 30px;
  transition: 0.3s ease;
  background-size: 200% auto;
}

.service-btn:hover {
  background-position: right center;
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2.2rem;
  }

  .service-card {
    text-align: center;
  }

  .service-icon {
    margin: 0 auto 20px;
  }
}


/* ===== About Us Section Styles ===== */
/* Main Container */
.about-us-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #e4f5fc, #ffffff);
  overflow: hidden;
}

.about-text {
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.about-text:hover {
  transform: scale(1.05);
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    font-size: 28px;
} 


.container {
  max-width: 1200px;
  margin: auto;
}

/* Decorative Circle */
.decor-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6,172,233,0.3), transparent);
  top: -100px;
  left: -100px;
  z-index: 0;
  border-radius: 50%;
}

/* Flex Content */
.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
  z-index: 1;
  position: relative;
}

/* Text Styling */
.about-text {
  flex: 1;
  min-width: 300px;
  animation: fadeInUp 1s ease forwards;
}

.about-text h2 {
  font-size: 2.8rem;
  color: #0e3c5f;
  margin-bottom: 20px;
  position: relative;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text h2 span {
  color: #06ace9;
}

.about-text h2:hover{
    transform: scale(1.05);
  background: linear-gradient(90deg, #06ace9, #0e3c5f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text p {
  font-size: 1.15rem;
  color: #444;
  line-height: 1.8;
  max-width: 600px;
  margin-bottom: 30px;
}

/* Button Styling */
.read-more-btn {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(135deg, #06ace9, #dd0416);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s ease;
  background-size: 200% auto;
}

.read-more-btn:hover {
  background-position: right center;
  transform: scale(1.05);
}

/* Image Section */
.about-images {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 20px;
  position: relative;
}

.image-card {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.image-card img {
  width: 100%;
  display: block;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-card:hover img {
  transform: scale(1.05);
}

.image-overlay {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.image-small {
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-images {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .image-overlay,
  .image-small {
    grid-column: 1 / 2;
  }

  .about-text h2 {
    font-size: 2.2rem;
  }

  .read-more-btn {
    padding: 12px 28px;
  }
}
/* ===== Fancy Grid Layout for About Images ===== */
.fancy-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 180px;
  gap: 20px;
  place-items: center;
}

/* Large image in main left column */
.large-image {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  transform: rotate(-2deg);
  z-index: 2;
}

/* Top small image */
.small-top {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  transform: rotate(6deg);
  z-index: 3;
}

/* Bottom small image */
.small-bottom {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  transform: rotate(-4deg);
  z-index: 1;
}

/* Hover Effect */
.fancy-layout .image-card:hover {
  transform: scale(1.06) rotate(0deg);
  transition: transform 0.3s ease;
}

/* Blob Shape Behind Images */
.blob-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at 30% 30%, #06ace9 30%, transparent 70%);
  top: 20px;
  left: 10px;
  z-index: 0;
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(20px);
}

/* Responsive Layout */
@media (max-width: 768px) {
  .fancy-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
    padding: 20px 0;
  }

  .fancy-layout .image-card {
    width: 90%;
    margin: 0 auto;
    transform: none !important;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  }

  .blob-shape {
    display: none;
  }
}

/* Video Story Section */
.video-story-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #e4f5fc, #ffffff);
  overflow: hidden;
}

.video-story-decor {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6,172,233,0.3), transparent);
  top: -100px;
  right: -100px;
  z-index: 0;
  border-radius: 50%;
}

.video-story-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.video-story-title {
  font-size: 2.8rem;
  color: #0e3c5f;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
}

.video-story-title span {
  color: #06ace9;
}

.video-story-subtitle {
  font-size: 1.2rem;
  color: #444;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Video Container */
.video-story-video-wrapper {
  position: relative;
  max-width: 600px;
  margin: auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  opacity: 1;
  transform: none; 
}

.video-story-video-wrapper.active {
  animation: videoFadeInUp 0.8s ease-out forwards;
}

.video-story-video {
  width: 100%;
  height: auto;
  display: block;
}

/* Animation Keyframes */
@keyframes videoFadeInUp {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Hover على العنوان */
.video-story-title {
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.video-story-title:hover {
  transform: scale(1.05);
  background: linear-gradient(90deg, #06ace9, #0e3c5f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* حركة إضاءة على النص */
.video-story-subtitle {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.video-story-subtitle::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: all 0.5s ease;
}

.video-story-subtitle:hover::after {
  left: 100%;
}




/* Why Choose Section */
.why-choose-sectionmain {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #e4f5fc, #ffffff);
  overflow: hidden;
}

.decor-circlemain {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6,172,233,0.3), transparent);
  top: -100px;
  left: -100px;
  z-index: 0;
  border-radius: 50%;
}

.why-contentmain {
  position: relative;
  z-index: 1;
}

.why-textmain {
  max-width: 1000px;
  margin: auto;
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

.why-textmain h2 {
  font-size: 2.8rem;
  color: #0e3c5f;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-textmain h2 span {
  color: #06ace9;
}

.why-textmain h2:hover{
  transform: scale(1.05);
  background: linear-gradient(90deg, #06ace9, #0e3c5f);
  -webkit-background-clip: text; 
  -webkit-text-fill-color: transparent;
}

.why-textmain p {
  font-size: 1.2rem;
  color: #444;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 40px;
}


/* Features List */
.features-listmain {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.feature-cardmain {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px 30px;
  transition: 0.3s ease;
  text-align: left;
}

.feature-cardmain:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.feature-cardmain .iconmain {
  font-size: 2rem;
  color: #06ace9;
  flex-shrink: 0;
}

.feature-cardmain h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: #0e3c5f;
  font-weight: 600;
}

.feature-cardmain p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

/* CTA Button */
.read-more-btnmain {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(135deg, #06ace9, #dd0416);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s ease;
  background-size: 200% auto;
}

.read-more-btnmain:hover {
  background-position: right center;
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (min-width: 768px) {
  .features-listmain {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-listmain {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Main Section */

.logistics-gallery-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #e4f5fc, #ffffff);
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Decorative Circle */
.decor-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6,172,233,0.3), transparent);
  top: -120px;
  left: -120px;
  border-radius: 50%;
  z-index: 0;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Section Header */
.section-header h2 {
  font-size: 2.8rem;
  color: #0e3c5f;
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-header h2 span {
  color: #06ace9;
}

.section-header p {
  font-size: 1.2rem;
  color: #444;
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}
/* Flip Gallery Grid */
.flip-gallery {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
/* Flip Card Container */
.flip-card {
  width: 320px;
  perspective: 1000px;
  margin: 20px;
  cursor: pointer;
}

/* Inner wrapper */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 320px;
  transition: transform 0.8s ease-in-out;
  transform-style: preserve-3d;
}

/* Front and Back faces */
.flip-card-front, .flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  top: 0;
  left: 0;
}

.flip-card-front img,
.flip-card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.flip-card-back {
  transform: rotateY(180deg);
}

/* Flip on hover or touch */
.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

/* Caption */
.caption {
  margin-top: 15px;
  text-align: center;
}

.caption h3 {
  font-size: 1.3rem;
  color: #0e3c5f;
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: capitalize;
}

.caption p {
  color: #06ace9;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
}

/* Responsive */
@media (max-width: 992px) {
  .flip-card {
    width: 90%;
    max-width: 350px;
  }
}


/* Promotional Images Mosaic */
.promo-images-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #e4f5fc, #ffffff);
  text-align: center;
  position: relative;
}

.promo-images-section h2 {
  font-size: 2.8rem;
  color: #0e3c5f;
  margin-bottom: 10px;
  font-weight: bold;
}

.promo-images-section p {
  color: #444;
  margin-bottom: 50px;
  font-size: 1.2rem;
}

/* Mosaic Grid */
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.mosaic-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mosaic-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.mosaic-item .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: rgba(6,172,233,0.7);
  color: #fff;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.mosaic-item:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.mosaic-item:hover img {
  transform: scale(1.1);
}

.mosaic-item:hover .overlay {
  transform: translateY(0);
}

.mosaic-item .overlay h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Responsive */
@media (min-width: 1024px) {
  .mosaic-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}



/*about us page */

/* General Container */
.container-aboutpage {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Hero Section */
.about-us-hero-aboutpage {
  position: relative;
  height: 80vh;
  background: url('images/abouthero.mp4') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  overflow: hidden;
}

.hero-overlay-aboutpage {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(6,172,233,0.3), transparent);
 mix-blend-mode: multiply;
  z-index: 0;
}

.hero-content-aboutpage {
  position: relative;
  z-index: 1;
}

.about-us-hero-aboutpage h1 {
  font-size: 4rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-us-hero-aboutpage h1 span {
  color: #dd0416;
}

.about-us-hero-aboutpage p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}

.btn-primary-aboutpage {
  padding: 15px 40px;
  background: linear-gradient(135deg, #06ace9, #dd0416);
  color: #fff;
  font-weight: 700;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary-aboutpage:hover {
  background-position: right center;
  transform: scale(1.05);
}

/* Our Story Section */
.our-story-section-aboutpage {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 80px 0;
  flex-wrap: wrap;
}

.story-text-aboutpage {
  flex: 1;
  min-width: 320px;
}

.story-text-aboutpage h2 {
  font-size: 2.5rem;
  color: #0e3c5f;
  margin-bottom: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.story-text-aboutpage p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #444;
}

.story-video-aboutpage {
  flex: 1;
  min-width: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(6,172,233,0.3);
}

.story-video-aboutpage video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Values Section */
.values-section-aboutpage {
  background: #e4f5fc;
  padding: 60px 20px;
  text-align: center;
}


.section-title-aboutpage {
  font-size: 2.8rem;
  color: #0e3c5f;
  font-weight: 700;
  margin-bottom: 40px;
  text-transform: uppercase;
}

.values-grid-aboutpage {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.value-card-aboutpage {
  background: white;
  padding: 30px 20px;
  border-radius: 20px;
  max-width: 300px;
  box-shadow: 0 10px 25px rgba(6,172,233,0.1);
  transition: transform 0.3s ease;
  cursor: default;
}

.value-card-aboutpage:hover {
  transform: translateY(-10px);
}

.value-card-aboutpage .icon-aboutpage {
  font-size: 3rem;
  color: #06ace9;
  margin-bottom: 15px;
}

.value-card-aboutpage h3 {
  color: #0e3c5f;
  font-weight: 700;
  margin-bottom: 15px;
}

.value-card-aboutpage p {
  color: #444;
  line-height: 1.5;
}

/* Team Section */
.team-section-aboutpage {
  padding: 80px 20px;
  text-align: center;
}

.team-grid-aboutpage {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.team-member-aboutpage {
  max-width: 250px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(6,172,233,0.15);
  transition: transform 0.3s ease;
  cursor: default;
  background: white;
}

.team-member-aboutpage:hover {
  transform: translateY(-10px);
}

.team-member-aboutpage img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-bottom: 5px solid #06ace9;
}

.team-member-aboutpage h3 {
  margin: 15px 0 5px;
  color: #0e3c5f;
  font-weight: 700;
}

.team-member-aboutpage p {
  color: #06ace9;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Stats Section */
.stats-section-aboutpage {
  background: #06ace9;
  padding: 60px 20px;
  color: white;
  text-align: center;
}

.stats-grid-aboutpage {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.stat-item-aboutpage {
  flex: 1;
  min-width: 150px;
}

.stat-item-aboutpage h3.count-aboutpage {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.stat-item-aboutpage p {
  font-size: 1.2rem;
}


.about-us-aboutusbg {
  padding: 60px 20px;
  background: #f9f9f9;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.container-aboutusbg {
  max-width: 1200px;
  margin: auto;
}
.title-aboutusbg {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}
.title-aboutusbg span {
  color: #007ACC;
}
.info-grid-aboutusbg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.info-item-aboutusbg h4 {
  font-size: 1.1rem;
  color: #007ACC;
  margin-bottom: 6px;
}
.info-item-aboutusbg p {
  font-size: 1rem;
  color: #333;
  margin: 0;
}
.info-item-aboutusbg a {
  color: #007ACC;
  text-decoration: none;
}
.info-item-aboutusbg a:hover {
  text-decoration: underline;
}


.financial-section2023 {
  background: linear-gradient(135deg, #f0f8ff, #e0f3ff);
  padding: 70px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.container-financial2023 {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
.title-financial2023 {
  font-size: 2.7rem;
  color: #003366;
  margin-bottom: 50px;
}
.title-financial2023 span {
  color: #007ACC;
}
.card-grid-financial2023 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.card-financial2023 {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s forwards;
}
.card-financial2023:nth-child(2) {
  animation-delay: 0.2s;
}
.card-financial2023:nth-child(3) {
  animation-delay: 0.4s;
}
.card-financial2023:nth-child(4) {
  animation-delay: 0.6s;
}
.card-financial2023:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}
.card-financial2023 img {
  width: 60px;
  margin-bottom: 15px;
}
.card-financial2023 h3 {
  font-size: 1.2rem;
  color: #007ACC;
  margin-bottom: 10px;
}
.card-financial2023 p {
  font-size: 1rem;
  color: #333;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Tweak */
@media (max-width: 500px) {
  .title-financial2023 {
    font-size: 2rem;
  }
  .card-financial2023 {
    padding: 20px 15px;
  }
}


.fleet-section2023 {
  background: #fff;
  padding: 80px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
}
.fleet-container2023 {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
.fleet-title2023 {
  font-size: 2.8rem;
  color: #003366;
  margin-bottom: 15px;
}
.fleet-subtitle2023 {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}
.fleet-grid2023 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
}
.fleet-card2023 {
  background: linear-gradient(145deg, #f4f8fb, #ffffff);
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUpFleet 1s forwards;
}
.fleet-card2023:nth-child(2) { animation-delay: 0.2s; }
.fleet-card2023:nth-child(3) { animation-delay: 0.4s; }
.fleet-card2023:nth-child(4) { animation-delay: 0.6s; }

.fleet-card2023:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.fleet-card2023 img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}
.fleet-card2023 h3 {
  font-size: 1.2rem;
  color: #007ACC;
  margin-bottom: 8px;
}
.fleet-card2023 p {
  font-size: 1rem;
  color: #333;
  margin: 0;
}

/* Fade animation */
@keyframes fadeUpFleet {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile optimization */
@media (max-width: 600px) {
  .fleet-title2023 {
    font-size: 2rem;
  }
  .fleet-subtitle2023 {
    font-size: 1rem;
  }
}






.partners-carousel-section2025 {
  padding: 60px 20px;
  background: linear-gradient(135deg, #e4f5fc, #ffffff);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.partners-carousel-container2025 {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}
.partners-carousel-title2025 {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 30px;
}

.carousel-track2025 {
  display: flex;
  overflow: hidden;
  position: relative;
}
.carousel-slide2025 {
  display: flex;
  animation: scrollCarousel 20s linear infinite;
}
.carousel-slide2025 img {
  width: 130px;
  height: auto;
  margin: 0 25px;
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.carousel-slide2025 img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Infinite scrolling animation */
@keyframes scrollCarousel {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 600px) {
  .partners-carousel-title2025 {
    font-size: 2rem;
  }
  .carousel-slide2025 img {
    width: 90px;
    margin: 0 15px;
  }
}

/* Image Gallery Section */
.image-gallery-section9 {
  position: relative;
  padding: 80px 20px;
  background: linear-gradient(135deg, #e4f5fc, #ffffff);
  overflow: hidden;
}

.decor-circle-gallery9 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(6,172,233,0.2), transparent);
  top: -80px;
  right: -80px;
  z-index: 0;
  border-radius: 50%;
}

.container-gallery9 {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: auto;
  text-align: center;
}

.gallery-title9 {
  font-size: 2.5rem;
  color: #0e3c5f;
  margin-bottom: 40px;
  font-weight: bold;
  text-transform: uppercase;
}

.gallery-grid9 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.image-story-card9 {
  flex: 1 1 300px;
  max-width: 350px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.image-story-card9 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.image-story-card9:hover img {
  transform: scale(1.1) rotate(2deg);
}

.image-story-card9:hover {
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery-grid9 {
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .gallery-grid9 {
    flex-direction: column;
    align-items: center;
  }
}


/* serv pg */ 
.alt-service-dervbg {
  padding: 60px 20px;
  background: linear-gradient(135deg, #e4f5fc, #ffffff);
}

.alt-row-dervbg {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}

.alt-row-dervbg.reverse-dervbg {
  flex-direction: row-reverse;
}

.alt-image-dervbg {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
}

.alt-image-dervbg img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.alt-image-dervbg img:hover {
  transform: scale(1.05);
}

.alt-text-dervbg {
  flex: 1;
  min-width: 280px;
  max-width: 600px;
  color: #333;
}

.alt-text-dervbg h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #1b6fb9;
}

.alt-text-dervbg p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
}

@media (max-width: 768px) {
  .alt-row-dervbg,
  .alt-row-dervbg.reverse-dervbg {
    flex-direction: column;
    text-align: center;
  }
}




/* HERO SECTION CSS */
  .services-hero-dervbg {
    background: linear-gradient(rgba(0, 51, 102, 0.7), rgba(0, 51, 102, 0.7)),
                url('../images/tfl6.jpeg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 120px 20px;
    text-align: center;
    position: relative;
    margin-top: auto;
  }

  .services-hero-content-dervbg {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1.2s ease forwards;
  }

  .services-hero-title-dervbg {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .services-hero-subtitle-dervbg {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #e0e0e0;
    font-weight: 300;
  }

  @keyframes fadeInUp {
    0% {
      transform: translateY(40px);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @media (max-width: 768px) {
    .services-hero-title-dervbg {
      font-size: 2.5rem;
    }
    .services-hero-subtitle-dervbg {
      font-size: 1rem;
    }
  }



.grid-gallery-dervbg {
  padding: 60px 20px;
  background: linear-gradient(135deg, #e4f5fc, #ffffff);
}

.gallery-grid-dervbg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-card-dervbg {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-card-dervbg img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-card-dervbg:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.gallery-card-dervbg:hover img {
  transform: scale(1.1);
}



/* contact us page */ 
/* Hero Section */
.contact-hero-dervbg {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 20px 80px;
  position: relative;
  background: linear-gradient(135deg, #e4f5fc, #ffffff);
  text-align: center;
  overflow: hidden;
}

.hero-content-dervbg {
  max-width: 800px;
  z-index: 2;
  animation: fadeInUp 1.2s ease forwards;
}

.hero-content-dervbg h1 {
  font-size: 3.2rem;
  font-weight: bold;
  color: #0e3c5f;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.2;
}

.hero-content-dervbg h1 span {
  color: #06ace9;
}

.hero-content-dervbg p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-btn-dervbg {
  display: inline-block;
  padding: 14px 40px;
  background: linear-gradient(to right, #22c55e, #16a34a);
  color: white;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background-size: 200% auto;
}

.hero-btn-dervbg:hover {
  background-position: right center;
  transform: scale(1.05);
}

/* Image section */
.hero-image-dervbg {
  margin-top: 40px;
  animation: fadeInScale 1.4s ease forwards;
}

.hero-image-dervbg img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

/* Decorative Circles */
.decor-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6,172,233,0.2), transparent);
  border-radius: 50%;
  z-index: 0;
}

.decor-circle.top-left {
  top: -100px;
  left: -100px;
}

.decor-circle.bottom-right {
  bottom: -100px;
  right: -100px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (min-width: 768px) {
  .contact-hero-dervbg {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .hero-content-dervbg {
    max-width: 50%;
  }

  .hero-image-dervbg {
    max-width: 45%;
    margin-top: 0;
  }
}

.contact-info-section-dervbg {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #e4f5fc, #ffffff);
  overflow: hidden;
}

.contact-info-content-dervbg {
  position: relative;
  z-index: 1;
}

.contact-text-dervbg {
  max-width: 900px;
  margin: auto;
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

.contact-text-dervbg h2 {
  font-size: 2.8rem;
  color: #0e3c5f;
  margin-bottom: 20px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-text-dervbg h2 span {
  color: #06ace9;
}

.contact-text-dervbg p {
  font-size: 1.2rem;
  color: #444;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 40px;
}


.features-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.feature-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px 30px;
  transition: 0.3s ease;
  text-align: left;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.feature-card .icon {
  font-size: 2rem;
  color: #06ace9;
  flex-shrink: 0;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: #0e3c5f;
  font-weight: 600;
}

.feature-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}



/* Decorative Circle */
.decor-circle {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6,172,233,0.3), transparent);
  top: -100px;
  right: -100px;
  z-index: 0;
  border-radius: 50%;
}

/* Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (min-width: 768px) {
  .features-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-list {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* join us page */

/* Hero Section */
.join-hero-dervbg {
  background: url('../images/ruba23-2.jpg') center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.overlay-dervbg {
  background-color: rgba(14, 60, 95, 0.75);
  color: #fff;
  padding: 40px;
  border-radius: 20px;
  animation: fadeInUp 1s ease forwards;
}

.overlay-dervbg h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.overlay-dervbg h1 span {
  color: #06ace9;
}

.overlay-dervbg p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: auto;
}

/* Callout */
.join-callout-dervbg {
  background: linear-gradient(135deg, #f0faff, #ffffff);
  padding: 100px 20px;
  text-align: center;
}

.callout-content-dervbg {
  background: #fff;
  padding: 60px 30px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  animation: fadeInUp 1s ease forwards;
}

.callout-content-dervbg h2 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #0e3c5f;
  margin-bottom: 20px;
}

.callout-content-dervbg h2 span {
  color: #06ace9;
}

.callout-content-dervbg p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto;
}

/* Form Section */
.join-form-dervbg {
  background: linear-gradient(135deg, #e4f5fc, #ffffff);
  padding: 80px 20px;
}

.form-container-dervbg {
  max-width: 700px;
  background: linear-gradient(135deg, #e4f5fc, #ffffff);
  padding: 50px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.form-title {
  font-size: 2.2rem;
  color: #0e3c5f;
  margin-bottom: 20px;
  font-weight: bold;
}

.note-text {
  font-size: 1rem;
  color: #dd0416;
  margin-bottom: 30px;
}

.note-text a {
  color: #06ace9;
  text-decoration: underline;
}

.join-form-dervbg form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.join-form-dervbg input,
.join-form-dervbg textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  transition: 0.3s;
}

.join-form-dervbg input:focus,
.join-form-dervbg textarea:focus {
  border-color: #06ace9;
  outline: none;
  box-shadow: 0 0 0 3px rgba(6, 172, 233, 0.2);
}

.apply-btn {
  background: linear-gradient(135deg, #28a745, #1b9a40);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.apply-btn:hover {
  background-position: right center;
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .overlay-dervbg h1 {
    font-size: 2.2rem;
  }

  .callout-content-dervbg h2 {
    font-size: 2rem;
  }

  .form-container-dervbg {
    padding: 30px 20px;
  }
}






/* contact section*/
.contact-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #e4f5fc, #ffffff);
  position: relative;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-info h2 {
  font-size: 2.6rem;
  color: #0e3c5f;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
}

.contact-info h2 span {
  color: #06ace9;
}

.contact-info p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.6;
  max-width: 600px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 20px;
  border-radius: 12px;
  border: 1px solid #ccc;
  font-size: 1rem;
  resize: none;
  transition: 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #06ace9;
  outline: none;
  box-shadow: 0 0 5px rgba(6, 172, 233, 0.4);
}

.contact-map {
  flex: 1;
  min-width: 300px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

@media (max-width: 992px) {
  .contact-content {
    flex-direction: column;
    text-align: center;
  }

  .contact-map iframe {
    height: 250px;
  }
}






/* footer */
.main-footer {
  background: linear-gradient(135deg, #e4f5fc, #ffffff);
  padding: 60px 20px 30px;
  color: #0e3c5f;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-about,
.footer-links,
.footer-contact {
  flex: 1;
  min-width: 250px;
}

.footer-about h3,
.footer-links h4,
.footer-contact h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: bold;
  color: #0e3c5f;
}

.footer-about p,
.footer-contact p,
.footer-links ul li a {
  font-size: 1rem;
  color: #444;
  margin-bottom: 8px;
  text-decoration: none;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a:hover {
  color: #06ace9;
}

/* Custom social buttons styled like site buttons */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.custom-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 18px;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  background: linear-gradient(135deg, #06ace9, #dd0416);
  background-size: 200% auto;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.custom-social-btn:hover {
  background-position: right center;
  transform: scale(1.05);
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.95rem;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}

/* back to top */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: linear-gradient(135deg, #06ace9, #dd0416);
  color: white;
  border: none;
  outline: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

#backToTop:hover {
  transform: scale(1.1);
  background-position: right center;
}

h2:hover{
    transform: scale(1.05);
  background: linear-gradient(90deg, #06ace9, #0e3c5f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}