@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Sora:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #0a2540;
  --primary-rgb: 10, 37, 64;
  --secondary: #635bff;
  --secondary-rgb: 99, 91, 255;
  --accent: #10b981;
  --accent-hover: #059669;
  --accent-rgb: 16, 185, 129;
  --dark: #0f172a;
  --light: #f8fafc;
  --white: #ffffff;
  --gray: #475569;
  --border-light: #f1f5f9;
  
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.05);
  --shadow-md: 0 12px 30px rgba(10, 37, 64, 0.08);
  --shadow-lg: 0 20px 48px rgba(10, 37, 64, 0.12);
  --shadow-hover: 0 24px 56px rgba(99, 91, 255, 0.15);
}

/* Base Styles */
html, body {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--gray);
  background-color: var(--white);
  line-height: 1.65;
  font-size: 0.975rem;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.25;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary);
}

.section-padding {
  padding: 60px 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 40px 0;
  }
}

/* Badge/Subheadings */
.section-badge {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
  background-color: rgba(99, 91, 255, 0.08);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  display: inline-block;
}

/* Float Up-Down Animation for Icons */
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Utility Buttons */
.btn-custom {
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 14px 30px;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-custom-primary {
  background-color: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}

.btn-custom-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--secondary);
  transition: var(--transition);
  z-index: -1;
}

.btn-custom-primary:hover {
  color: var(--white);
  border-color: var(--secondary);
  box-shadow: 0 8px 24px rgba(99, 91, 255, 0.25);
  transform: translateY(-2px);
}

.btn-custom-primary:hover::after {
  width: 100%;
}

.btn-custom-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-custom-secondary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--primary);
  transition: var(--transition);
  z-index: -1;
}

.btn-custom-secondary:hover {
  color: var(--white);
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.15);
  transform: translateY(-2px);
}

.btn-custom-secondary:hover::after {
  width: 100%;
}

.btn-custom-white {
  background-color: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
}

.btn-custom-white::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--secondary);
  transition: var(--transition);
  z-index: -1;
}

.btn-custom-white:hover {
  color: var(--white);
  border-color: var(--secondary);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-custom-white:hover::after {
  width: 100%;
}

.btn-custom-outline-white {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-custom-outline-white::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--white);
  transition: var(--transition);
  z-index: -1;
}

.btn-custom-outline-white:hover {
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.btn-custom-outline-white:hover::after {
  width: 100%;
}

.btn-custom i {
  transition: var(--transition);
}

.btn-custom:hover i {
  transform: translateX(4px);
}

/* Header & Glassmorphism Navbar */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  transition: var(--transition);
}

.navbar {
  padding: 12px 0;
  transition: var(--transition);
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.navbar-scrolled {
  padding: 8px 0;
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
}

.logo-text span {
  font-family: var(--font-heading);
}

.navbar-nav .nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary) !important;
  padding: 8px 18px !important;
  position: relative;
  transition: var(--transition);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover {
  color: var(--secondary) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 36px);
}

.navbar-nav .nav-link.active {
  color: var(--secondary) !important;
}

/* Navbar Toggle Button Animation */
.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  position: relative;
  transition: var(--transition);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--primary);
  position: absolute;
  left: 3px;
  top: 14px;
  transition: var(--transition);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--primary);
  position: absolute;
  transition: var(--transition);
}

.navbar-toggler-icon::before {
  top: -7px;
}

.navbar-toggler-icon::after {
  top: 7px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Dropdown Menu styling */
.dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: 16px;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  display: block;
  transition: var(--transition);
  background-color: var(--white);
  border: 1px solid var(--border-light);
}

@media (min-width: 992px) {
  .nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.dropdown-item {
  font-family: var(--font-body);
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 8px;
  color: var(--gray);
  transition: var(--transition);
}

.dropdown-item:hover {
  background-color: rgba(99, 91, 255, 0.06);
  color: var(--secondary);
  transform: translateX(4px);
}

/* Contact Button inside Navbar */
.navbar-nav .nav-link.nav-contact-btn {
  background-color: var(--secondary) !important;
  color: var(--white) !important;
  border-radius: 50px;
  padding: 10px 24px !important;
  font-weight: 600;
  transition: var(--transition);
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  margin-left: 10px;
}

.navbar-nav .nav-link.nav-contact-btn::after {
  display: none !important;
}

.navbar-nav .nav-link.nav-contact-btn:hover {
  background-color: var(--primary) !important;
  box-shadow: 0 4px 18px rgba(99, 91, 255, 0.25);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  background-color: #f7f9fc;
  overflow: hidden;
}

.hero-slider-item {
  width: 100%;
}

.hero-content {
  z-index: 10;
  position: relative;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--primary);
}

.hero-title span.highlight-green {
  color: var(--accent);
}

.hero-text {
  font-size: 1.15rem;
  color: var(--gray);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.7;
}

.hero-image-wrapper {
  position: relative;
  z-index: 5;
}

.hero-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

/* Hero abstract decor shapes */
.hero-decor-1 {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 91, 255, 0.08) 0%, rgba(255,255,255,0) 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-decor-2 {
  position: absolute;
  bottom: 5%;
  left: 3%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, rgba(255,255,255,0) 70%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.6rem;
  }
  .hero-section {
    padding-top: 100px;
    padding-bottom: 40px;
    min-height: auto;
  }
  .hero-image-wrapper {
    margin-top: 40px;
  }
}

/* Custom Carousel Controls for Hero Section */
.carousel-control-prev,
.carousel-control-next {
  width: 54px;
  height: 54px;
  background-color: var(--white);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.9;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  margin: 0 24px;
  border: 1px solid var(--border-light);
}

.carousel-control-prev {
  left: 20px;
}

.carousel-control-next {
  right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background-color: var(--primary);
  opacity: 1;
  border-color: var(--primary);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1) grayscale(100%) brightness(0.1);
  width: 18px;
  height: 18px;
  transition: var(--transition);
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  filter: invert(1) brightness(10);
}

/* About Us Section Styles */
.about-image-container {
  position: relative;
}

.about-image-container::before {
  content: '';
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 140px;
  height: 140px;
  background-image: radial-gradient(var(--secondary) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.2;
  z-index: 1;
}

.about-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.about-features {
  margin-top: 30px;
}

.about-feature-item {
  display: flex;
  gap: 20px;
  background-color: var(--light);
  padding: 24px;
  border-radius: 16px;
  border-left: 4px solid var(--accent);
  transition: var(--transition);
}

.about-feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background-color: var(--white);
}

.about-feature-icon {
  font-size: 1.8rem;
  color: var(--accent);
  margin-top: 2px;
}

.about-feature-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary);
  margin: 0;
  line-height: 1.6;
}

/* Services Cards Section */
.services-grid {
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
  z-index: 10;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-img-holder {
  width: 100%;
  height: 220px;
  min-height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card-body {
  width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  transition: var(--transition);
  color: var(--primary);
}

.service-card-text {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Service card action buttons */
.service-card-actions {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}

.btn-card-action {
  flex: 1;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 11px 18px;
  border-radius: 50px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-card-explore {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-card-explore:hover {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(10, 37, 64, 0.12);
  transform: translateY(-2px);
}

.btn-card-contact {
  background-color: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}

.btn-card-contact:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
  transform: translateY(-2px);
}

.btn-card-action i {
  font-size: 0.75rem;
  transition: var(--transition);
}

.btn-card-action:hover i {
  transform: translateX(3px);
}

/* Service Card Hover States */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(99, 91, 255, 0.15);
}

.service-card:hover .service-card-img {
  transform: scale(1.08);
}

/* Badge hover removed */

.service-card:hover .service-card-title {
  color: var(--secondary);
}

/* Why Choose Us Section (3-Column Layout: Left, Center Image, Right) */
.why-section {
  background-color: var(--light);
}

.why-features-col {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  height: 100%;
}

.why-feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: var(--transition);
}

.why-feature-item.text-end {
  text-align: right;
  flex-direction: row-reverse;
}

.why-feature-icon-wrapper {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background-color: rgba(99, 91, 255, 0.08);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.5rem;
  transition: var(--transition);
  animation: floatUpDown 3.5s ease-in-out infinite;
}

.why-feature-item:nth-child(even) .why-feature-icon-wrapper {
  animation-delay: 0.5s;
}

.why-feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--primary);
}

.why-feature-text {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 0;
  line-height: 1.6;
}

.why-center-image-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}

.why-center-image {
  max-width: 100%;
  border-radius: 50%;
  width: 320px;
  height: 320px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--white);
  transition: var(--transition);
}

.why-center-image-holder::before {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 2px dashed rgba(99, 91, 255, 0.2);
  z-index: 0;
  pointer-events: none;
  animation: rotateDashed 25s linear infinite;
}

@keyframes rotateDashed {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.why-feature-item:hover .why-feature-icon-wrapper {
  background-color: var(--secondary);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(99, 91, 255, 0.3);
}

@media (max-width: 991px) {
  .why-feature-item.text-end {
    text-align: left;
    flex-direction: row;
  }
  .why-center-image-holder {
    margin: 40px 0;
  }
  .why-center-image {
    width: 250px !important;
    height: 250px !important;
    border-width: 6px !important;
  }
  .why-center-image-holder::before {
    width: 270px !important;
    height: 270px !important;
  }
}

/* Let's Build a Better Tomorrow (CTA Banner) */
.cta-banner {
  background: linear-gradient(135deg, rgba(10, 37, 64, 0.97) 0%, rgba(99, 91, 255, 0.95) 100%);
  color: var(--white);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.18) 0%, rgba(255,255,255,0) 60%);
  pointer-events: none;
}

.cta-banner-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.cta-banner-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  max-width: 700px;
}

@media (max-width: 991px) {
  .cta-banner {
    text-align: center;
    padding: 40px 0;
  }
  .cta-banner-text {
    margin: 0 auto 30px;
  }
  .cta-banner .btn-container {
    justify-content: center;
  }
}

/* Testimonials (Owl Carousel) */
.testimonials-section {
  background-color: var(--white);
  position: relative;
}

.testimonial-card-wrapper {
  padding: 15px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  position: relative;
  transition: var(--transition);
}

.testimonial-quote-icon {
  font-size: 2.5rem;
  color: rgba(99, 91, 255, 0.1);
  position: absolute;
  top: 30px;
  left: 30px;
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px !important;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(99, 91, 255, 0.15);
}

.testimonial-author-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2px;
}

.testimonial-author-title {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0;
}

.owl-theme .owl-dots {
  margin-top: 35px !important;
}

.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: #cbd5e1 !important;
  border-radius: 50%;
  margin: 5px 6px;
  transition: var(--transition);
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--secondary) !important;
  width: 24px;
  border-radius: 10px;
}

.owl-nav-custom {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.owl-nav-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background-color: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.owl-nav-btn:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(10, 37, 64, 0.15);
}

/* Horizontal Blog Cards Section */
.blog-section {
  background-color: var(--light);
}

.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: row;
  width: 100%;
}

.blog-img-holder {
  width: 35%;
  min-height: 260px;
  overflow: hidden;
  position: relative;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-body {
  width: 65%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-date {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.blog-title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 16px;
  transition: var(--transition);
  color: var(--primary);
}

.blog-text {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.6;
}

.blog-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--secondary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.blog-link i {
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(99, 91, 255, 0.15);
}

.blog-card:hover .blog-img {
  transform: scale(1.06);
}

.blog-card:hover .blog-title {
  color: var(--secondary);
}

.blog-card:hover .blog-link i {
  transform: translateX(4px);
}

@media (max-width: 991px) {
  .blog-card {
    flex-direction: column;
  }
  .blog-img-holder {
    width: 100%;
    min-height: 220px;
    height: 220px;
  }
  .blog-body {
    width: 100%;
    padding: 30px;
  }
  .blog-title {
    font-size: 1.25rem;
  }
}

/* Get In Touch & Form Section */
.contact-section {
  background-color: var(--white);
}

.contact-form-holder {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.form-control-custom {
  background-color: var(--light);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 16px 20px;
  font-size: 0.95rem;
  color: var(--primary);
  font-family: var(--font-body);
  transition: var(--transition);
}

.form-control-custom:focus {
  background-color: var(--white);
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(99, 91, 255, 0.1);
  outline: none;
}

.form-control-custom::placeholder {
  color: var(--gray);
  opacity: 0.6;
}

.contact-map-holder {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.contact-map-holder iframe {
  width: 100%;
  height: 100%;
  border: none;
  min-height: 420px;
}

@media (max-width: 991px) {
  .contact-map-holder {
    min-height: 350px;
    margin-top: 30px;
  }
}

/* Footer Styles */
.footer {
  background-color: #030d1a;
  color: rgba(255, 255, 255, 0.65);
  padding-top: 50px;
  font-size: 0.92rem;
}

.footer-brand img {
  height: 52px;
  margin-bottom: 20px;
}

.footer-text {
  margin-bottom: 25px;
  line-height: 1.75;
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.footer-social-link:hover {
  background-color: var(--secondary);
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(99, 91, 255, 0.4);
}

.footer-title {
  color: var(--white);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 2px;
  background-color: var(--accent);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a i {
  font-size: 0.75rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(4px);
}

.footer-links a:hover i {
  color: var(--accent);
}

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

.footer-contact-info li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.footer-contact-info i {
  color: var(--accent);
  font-size: 1.05rem;
  margin-top: 4px;
}

.footer-contact-text {
  margin: 0;
}

.footer-bottom {
  background-color: #01070e;
  padding: 18px 0;
  margin-top: 35px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 28px;
  justify-content: flex-end;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

@media (max-width: 991px) {
  .footer-bottom {
    text-align: center;
  }
  .footer-bottom-links {
    justify-content: center;
    margin-top: 15px;
  }
}

/* Responsive Mobile Navigation Styles */
@media (max-width: 991px) {
  .navbar {
    padding: 8px 0;
  }
  .navbar-brand img {
    height: 44px;
  }
  .navbar-collapse {
    background-color: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: 24px;
    margin-top: 15px;
    border: 1px solid var(--border-light);
    max-height: 80vh;
    overflow-y: auto;
  }
  .navbar-nav {
    align-items: flex-start !important;
    gap: 8px;
  }
  .navbar-nav .nav-link {
    padding: 10px 18px !important;
    width: 100%;
    border-radius: 10px;
    transition: var(--transition);
  }
  .navbar-nav .nav-link::after {
    display: none !important;
  }
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background-color: rgba(99, 91, 255, 0.05);
    color: var(--secondary) !important;
  }
  .dropdown-menu {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: rgba(10, 37, 64, 0.03);
    border-radius: 12px;
    padding: 10px 16px;
    margin-top: 6px;
    border: none;
    width: 100%;
    transition: none;
  }
  .dropdown-menu.show {
    display: block;
  }
  .dropdown-item {
    padding: 10px 16px;
    color: var(--gray);
  }
  .dropdown-item:hover {
    background-color: rgba(99, 91, 255, 0.08);
    color: var(--secondary);
    transform: translateX(4px);
  }
  .navbar-nav .nav-link.nav-contact-btn {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    margin-left: 0;
  }
}

/* About Page Specific Styles */
.about-hero {
  background: linear-gradient(135deg, #0a2540 0%, #1e3a8a 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.about-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
}

.about-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

.about-breadcrumb li a {
  color: rgba(255, 255, 255, 0.7);
}

.about-breadcrumb li a:hover {
  color: var(--accent);
}

.about-breadcrumb li::after {
  content: '/';
  color: rgba(255, 255, 255, 0.4);
  margin-left: 10px;
}

.about-breadcrumb li:last-child::after {
  display: none;
}

.about-breadcrumb li.active {
  color: var(--accent);
  font-weight: 600;
}

/* Vision and Mission Cards */
.vm-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 40px;
  height: 100%;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.vm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
}

.vm-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(99, 91, 255, 0.2);
}

.vm-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 1.8rem;
  transition: var(--transition);
}

.vm-card:hover .vm-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.vm-vision .vm-icon-wrapper {
  background-color: rgba(99, 91, 255, 0.1);
  color: var(--secondary);
}

.vm-mission .vm-icon-wrapper {
  background-color: rgba(16, 185, 129, 0.1);
  color: var(--accent);
}

/* Connect & Social Widget section */
.socials-section {
  padding: 50px 0;
  background-color: var(--light);
}

.about-social-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 45px;
  box-shadow: var(--shadow-md);
}

.social-pills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 30px;
}

@media (max-width: 576px) {
  .social-pills-grid {
    grid-template-columns: 1fr;
  }
}

.social-pill-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 16px;
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.social-pill-btn i {
  font-size: 1.4rem;
}

.social-pill-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-telegram {
  background: linear-gradient(135deg, #0088cc, #24a1de);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
}
.btn-linkedin-co {
  background: linear-gradient(135deg, #0a66c2, #0077b5);
}
.btn-linkedin-pers {
  background: linear-gradient(135deg, #0a66c2, #1886eb);
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
}

.contact-info-item {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: rgba(10, 37, 64, 0.05);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.contact-info-details h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray);
  margin-bottom: 4px;
}

.contact-info-details p,
.contact-info-details a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
}

.contact-info-details a:hover {
  color: var(--secondary);
}

.about-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 480px;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-width: 991px) {
  .about-image-wrapper {
    min-height: 350px;
    margin-bottom: 30px;
  }
}

/* Page Hero and Breadcrumbs Styles */
.page-hero {
  background: linear-gradient(135deg, #0a2540 0%, #1e3a8a 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
}

.page-breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.95rem;
}

.page-breadcrumb li a {
  color: rgba(255, 255, 255, 0.7);
}

.page-breadcrumb li a:hover {
  color: var(--accent);
}

.page-breadcrumb li::after {
  content: '/';
  color: rgba(255, 255, 255, 0.4);
  margin-left: 10px;
}

.page-breadcrumb li:last-child::after {
  display: none;
}

.page-breadcrumb li.active {
  color: var(--accent);
  font-weight: 600;
}

/* Service details layout */
.service-details-section {
  padding: 50px 0;
  background-color: var(--white);
}

.service-main-image {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
  height: 450px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .service-main-image {
    height: 300px;
  }
}

.service-full-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: #334155;
}

.service-full-content h2,
.service-full-content h3,
.service-full-content h4 {
  color: var(--primary);
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 20px;
}

.service-full-content p {
  margin-bottom: 24px;
}

.service-full-content ul,
.service-full-content ol {
  margin-bottom: 30px;
  padding-left: 20px;
}

.service-full-content li {
  margin-bottom: 12px;
}

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 35px;
  box-shadow: var(--shadow-md);
}

.widget-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--accent);
  border-radius: 2px;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

.trust-item i {
  color: var(--accent);
  font-size: 1.15rem;
}

.share-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.share-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--white) !important;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.share-icon-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.share-telegram {
  background: #0088cc;
}

.share-whatsapp {
  background: #25d366;
}

.share-linkedin {
  background: #0a66c2;
}

.share-envelope {
  background: var(--primary);
}

/* Sticky Left-Side WhatsApp Button */
.whatsapp-left-float {
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.45);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  color: var(--white) !important;
  font-size: 1.8rem;
}

.whatsapp-left-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.65);
  background-color: #20ba5a;
}


