:root {
  --primary-color: #F5A623;
  --secondary-color: #1E88A8;
  --accent-color: #2D9CDB;
  --dark-color: #1A1A2E;
  --light-color: #F8F9FA;
  --gradient-primary: linear-gradient(135deg, #F5A623 0%, #FF8A00 100%);
  --gradient-secondary: linear-gradient(135deg, #1E88A8 0%, #2D9CDB 100%);
  --gradient-hero: linear-gradient(135deg, rgba(245, 166, 35, 0.95) 0%, rgba(30, 136, 168, 0.95) 100%);
  --header-bg: #1A1A2E;
  --header-text: #fff;
}
        
        
/* custom link */
.dark-color{color:var(--dark-color);}
        
        
/* Top Bar */
.top-bar {
  background: linear-gradient(135deg, #F5A623 0%, #1E88A8 100%);
  padding: 10px 0;
  color: #fff;
  font-size: 0.9rem;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-right {
  justify-content: flex-end;
}

.top-bar-link {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.top-bar-link:hover {
  color: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
}

.top-bar-link i {
  font-size: 1.1rem;
}

/* Main Header */
.modern-header {
  position: relative;
  z-index: 1000;
}

.navbar-area {
  background: var(--header-bg);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.navbar-area.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  animation: slideDown 0.5s ease;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Desktop Logo */
.navbar-brand {
  padding: 8px 0;
  transition: all 0.3s ease;
}

.desktop-logo {
  transition: all 0.3s ease;
}

.navbar-area.sticky .desktop-logo {
  height: 70px !important;
  width: 70px !important;
}

/* Navigation */
.acavo-nav {
  padding: 0;
}

.navbar {
  padding: 0;
}

.navbar-nav {
  gap: 5px;
}

.nav-item {
  position: relative;
  display:flex;
}

.nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  padding: 8px 12px !important;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link i {
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: #fff !important;
  background: rgba(245, 166, 35, 0.1);
}

.nav-link:hover::before {
  width: 60%;
}

.nav-link:hover i {
  transform: scale(1.2);
  color: var(--primary-color);
}

/* Active Link */
.nav-link.active {
  color: #fff !important;
  background: rgba(245, 166, 35, 0.15);
  position: relative;
}

.nav-link.active::before {
  width: 60%;
}

.nav-link.active i {
  color: var(--primary-color);
}

/* CTA Button */
.nav-link-cta {
  background: var(--gradient-primary) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 6px 25px !important;
  margin-left: 10px;
  box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
}

.nav-link-cta::before {
  display: none;
}

.nav-link-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(245, 166, 35, 0.4);
  background: var(--gradient-secondary) !important;
}

.nav-link-cta.active {
  background: var(--gradient-secondary) !important;
}

/* Mobile Menu */
.acavo-responsive-nav {
  display: none;
  background: var(--header-bg);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-toggler {
  border: 2px solid var(--primary-color);
  padding: 8px 12px;
  border-radius: 8px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(245, 166, 35, 0.3);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(245, 166, 35, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Responsive Styles */
@media (max-width: 991px) {
  .top-bar {
    display: none;
  }

  .acavo-responsive-nav {
    display: block;
  }

  .acavo-nav .navbar {
    padding: 10px 0;
  }
  
    .navbar-brand {
        padding: 0;
    }

  .desktop-logo {
    height: 50px !important;
    width: 50px !important;
  }

  .navbar-collapse {
    background: rgba(26, 26, 46, 0.98);
    margin-top: 20px;
    padding: 0px;
    border-radius: 15px;
  }
  .navbar-light .navbar-toggler {
        color: rgb(255 255 255 / 55%);
        background: var(--gradient-primary);
    }

  .navbar-nav {
    gap: 10px;
  }

  .nav-link {
    padding: 12px 20px !important;
    border-radius: 10px;
  }

  .nav-link-cta {
    margin-left: 0;
    margin-top: 10px;
    text-align: center;
    justify-content: center;
  }

  .nav-link::before {
    display: none;
  }

  .nav-link.active {
    background: rgba(245, 166, 35, 0.2);
  }

  .top-bar-right,
  .top-bar-left {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .mobile-logo {
    height: 50px !important;
    width: 50px !important;
  }

  .top-bar-link {
    font-size: 0.85rem;
  }

  .nav-link span {
    font-size: 0.95rem;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Logo Animation on Hover */
.navbar-brand:hover .desktop-logo,
.logo-wrapper:hover .mobile-logo {
  transform: scale(1.05) rotate(5deg);
}
     
        /* Modern Hero Section */
        .modern-hero {
          background: var(--gradient-hero);
          min-height: 90vh;
          display: flex;
          align-items: center;
          position: relative;
          overflow: hidden;
        }
     
        .modern-hero::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: url('<?= base_url('assets/frontend/'); ?>images/hero/banner-bg.png') no-repeat center;
          background-size: cover;
          opacity: 0.1;
        }
     
        .modern-hero .hero-content {
          position: relative;
          z-index: 2;
        }
     
        .modern-hero h1 {
          font-size: 3.5rem;
          font-weight: 800;
          color: #fff;
          margin-bottom: 1.5rem;
          line-height: 1.2;
        }
     
        .modern-hero p {
          font-size: 1.3rem;
          color: rgba(255, 255, 255, 0.95);
          margin-bottom: 2rem;
        }
     
        .modern-hero .cta-btn {
          background: #fff;
          color: var(--primary-color);
          padding: 15px 40px;
          border-radius: 50px;
          font-weight: 600;
          font-size: 1.1rem;
          display: inline-flex;
          align-items: center;
          gap: 10px;
          transition: all 0.3s ease;
          border: 2px solid transparent;
        }
     
        .modern-hero .cta-btn:hover {
          background: transparent;
          color: #fff;
          border-color: #fff;
          transform: translateY(-3px);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
     
        /* Modern Feature Cards */
        .modern-features {
          margin-top: -80px;
          position: relative;
          z-index: 10;
        }
     
        .feature-card {
          background: #fff;
          border-radius: 20px;
          padding: 20px 15px;
          box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
          transition: all 0.4s ease;
          height: 100%;
          border: 1px solid rgba(0, 0, 0, 0.05);
        }
     
        .feature-card:hover {
          transform: translateY(-10px);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }
     
        .feature-card .icon {
          width: 80px;
          height: 80px;
          border-radius: 20px;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 2.5rem;
          margin-bottom: 25px;
          transition: all 0.3s ease;
        }
     
        .feature-card:nth-child(1) .icon {
          background: linear-gradient(135deg, rgba(245, 166, 35, 0.1) 0%, rgba(245, 166, 35, 0.2) 100%);
          color: var(--primary-color);
        }
     
        .feature-card:nth-child(2) .icon {
          background: linear-gradient(135deg, rgba(30, 136, 168, 0.1) 0%, rgba(30, 136, 168, 0.2) 100%);
          color: var(--secondary-color);
        }
     
        .feature-card:nth-child(3) .icon {
          background: linear-gradient(135deg, rgba(45, 156, 219, 0.1) 0%, rgba(45, 156, 219, 0.2) 100%);
          color: var(--accent-color);
        }
     
        .feature-card:nth-child(4) .icon {
          background: linear-gradient(135deg, rgba(26, 26, 46, 0.1) 0%, rgba(26, 26, 46, 0.2) 100%);
          color: var(--dark-color);
        }
     
        .feature-card h3 {
          font-size: 1.2rem;
          font-weight: 700;
          margin-bottom: 15px;
          color: var(--dark-color);
        }
     
        .feature-card p {
          color: #666;
          line-height: 1.7;
          margin-bottom: 20px;
        }
     
        .feature-card .read-more {
          color: var(--primary-color);
          font-weight: 600;
          text-decoration: none;
          display: inline-flex;
          align-items: center;
          gap: 8px;
          transition: all 0.3s ease;
        }
     
        .feature-card .read-more:hover {
          gap: 15px;
        }
     
        /* Modern Section Titles */
        .modern-section-title {
          text-align: center;
          margin-bottom: 60px;
        }
     
        .modern-section-title .subtitle {
          color: var(--primary-color);
          font-weight: 600;
          font-size: 1rem;
          text-transform: uppercase;
          letter-spacing: 2px;
          display: block;
        }
     
        .modern-section-title h2 {
          font-size: 2.8rem;
          font-weight: 800;
          color: var(--dark-color);
          margin-bottom: 20px;
          line-height: 1.2;
        }
     
        .modern-section-title .title-line {
          width: 80px;
          height: 4px;
          background: var(--gradient-primary);
          margin: 0 auto 20px;
          border-radius: 2px;
        }
     
        .modern-section-title p {
          font-size: 1.1rem;
          color: #666;
          max-width: 600px;
          margin: 0 auto;
        }
     
        /* About Section */
        .about-section {
          padding: 50px 0;
          background: var(--light-color);
        }
     
        .about-image-wrapper {
          position: relative;
          height: 500px;
        }
     
        .about-image-wrapper img {
          border-radius: 20px;
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
          height: 100%;
          width: 100%;
        }
     
        .about-image-wrapper::before {
          content: '';
          position: absolute;
          top: -20px;
          left: -20px;
          right: 20px;
          bottom: 20px;
          background: var(--gradient-primary);
          border-radius: 20px;
          z-index: -1;
        }
     
        .about-content h2 {
          font-size: 2.5rem;
          font-weight: 800;
          color: var(--dark-color);
          margin-bottom: 25px;
        }
     
        .about-content .highlight {
          color: var(--primary-color);
          font-weight: 700;
        }
     
        .about-content p {
          font-size: 1.05rem;
          line-height: 1.8;
          color: #555;
          margin-bottom: 20px;
        }
     
        .about-stats {
          display: grid;
          grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
          gap: 30px;
          margin-top: 40px;
        }
     
        .stat-item {
          text-align: center;
          padding: 25px;
          background: #fff;
          border-radius: 15px;
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        }
     
        .stat-item .number {
          font-size: 2.5rem;
          font-weight: 800;
          background: var(--gradient-primary);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          margin-bottom: 10px;
        }
     
        .stat-item .label {
          font-size: 0.95rem;
          color: #666;
          font-weight: 500;
        }
     
        /* Services Section */
        .services-section {
          padding: 50px 0;
        }
     
        .service-card::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
          z-index: 1;
          transition: all 0.4s ease;
        }
     
        .service-card:hover::before {
          background: linear-gradient(180deg, rgba(245, 166, 35, 0.3) 0%, rgba(30, 136, 168, 0.9) 100%);
        }
     
        .service-card img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          transition: all 0.4s ease;
        }
     
        .service-card:hover img {
          transform: scale(1.1);
        }
     
        .service-card .content {
          position: absolute;
          bottom: 0;
          left: 0;
          right: 0;
          padding: 30px;
          z-index: 2;
          color: #fff;
        }
     
        .service-card h3 {
          font-size: 1.8rem;
          font-weight: 700;
          margin-bottom: 15px;
          color: #fff;
        }
     
        .service-card p {
          font-size: 1rem;
          opacity: 0;
          transform: translateY(20px);
          transition: all 0.4s ease;
          margin-bottom: 20px;
        }
     
        .service-card:hover p {
          opacity: 1;
          transform: translateY(0);
        }
     
        .service-card .btn-explore {
          background: #fff;
          color: var(--primary-color);
          padding: 12px 30px;
          border-radius: 50px;
          font-weight: 600;
          display: inline-block;
          opacity: 0;
          transform: translateY(20px);
          transition: all 0.4s ease 0.1s;
          text-decoration: none;
        }
     
        .service-card:hover .btn-explore {
          opacity: 1;
          transform: translateY(0);
        }
     
        /* Loan Calculator Section */
        .loan-calculator-section {
          background: var(--gradient-hero);
          padding: 50px 0;
          position: relative;
          overflow: hidden;
        }
     
     
        .calculator-card {
          background: #fff;
          border-radius: 25px;
          padding: 35px;
          box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
        }
     
        .calculator-card h2 {
          font-size: 2.3rem;
          font-weight: 800;
          color: var(--dark-color);
          margin-bottom: 15px;
        }
     
        .calculator-card .subtitle {
          color: #666;
          font-size: 1.1rem;
        }
     
        .result-card {
          background: rgba(245, 166, 35, 0.1);
          border-radius: 20px;
          padding: 40px;
          text-align: center;
        }
     
        .result-card h3 {
          font-size: 1.5rem;
          color: var(--dark-color);
          margin-bottom: 20px;
        }
     
        .result-value {
          font-size: 3rem;
          font-weight: 800;
          background: var(--gradient-primary);
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          background-clip: text;
          margin-bottom: 30px;
        }
     
        .apply-btn {
          background: var(--gradient-primary);
          color: #fff;
          padding: 18px 50px;
          border-radius: 50px;
          font-weight: 700;
          font-size: 1.1rem;
          border: none;
          cursor: pointer;
          transition: all 0.3s ease;
          width: 100%;
          text-decoration: none;
          display: inline-block;
        }
     
        .apply-btn:hover {
          transform: translateY(-3px);
          box-shadow: 0 15px 40px rgba(245, 166, 35, 0.4);
          color: #fff;
        }
     
        /* Testimonial Section */
        .testimonial-section {
          padding: 50px 0;
          background: var(--light-color);
        }
     
        .testimonial-card {
          background: #fff;
          border-radius: 20px;
          padding: 16px;
          box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
          transition: all 0.3s ease;
          margin-bottom: 5px !important;
        }
     
        .testimonial-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        }
     
        .testimonial-author {
          display: flex;
          align-items: center;
          gap: 20px;
          margin-bottom: 25px;
        }
     
        .testimonial-author img {
          width: 70px !important;
          height: 70px;
          border-radius: 50%;
          border: 3px solid var(--primary-color);
        }
     
        .testimonial-author .info h4 {
          font-size: 1.2rem;
          font-weight: 700;
          color: var(--dark-color);
          margin-bottom: 5px;
        }
     
        .testimonial-author .info .location {
          color: #666;
          font-size: 0.95rem;
        }
     
        .testimonial-rating {
          color: var(--primary-color);
          font-size: 1.2rem;
          margin-bottom: 20px;
        }
     
        .testimonial-text {
          color: #555;
          line-height: 1.8;
          font-size: 1.05rem;
          font-style: italic;
        }
        
        
        .testimonial-section{
            overflow: hidden;
        }
        
        .testimonial-carousel-1{
            overflow: hidden;
        }
        
        .testimonial-carousel-1 .owl-stage-outer{
            overflow: hidden;
        }
        
        .testimonial-carousel-1 .owl-item{
            width: 100%;
        }
        
        .testimonial-card{
            margin: 0;
            width: 100%;
        }
     
        /* Why Choose Us */
        .why-choose-section {
          padding: 50px 0;
        }
     
        .choose-feature {
          display: flex;
          gap: 25px;
          margin-bottom: 35px;
          padding: 30px;
          background: #fff;
          border-radius: 15px;
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
          transition: all 0.3s ease;
        }
     
        .choose-feature:hover {
          transform: translateX(10px);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
     
        .choose-feature .icon {
          width: 60px;
          height: 60px;
          min-width: 60px;
          background: var(--gradient-primary);
          border-radius: 15px;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #fff;
          font-size: 1.8rem;
        }
     
        .choose-feature h3 {
          font-size: 1.3rem;
          font-weight: 700;
          color: var(--dark-color);
          margin-bottom: 10px;
        }
     
        .choose-feature p {
          color: #666;
          line-height: 1.7;
          margin: 0;
        }
     
        /* Bank Logos */
        .bank-logos-section {
          padding: 50px 0;
          background: #fff;
        }
        
        .owl-carousel .owl-stage-outer {
            overflow: unset;
        }
     
        .bank-logo-item {
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
            height: 115px;
            box-shadow: 0 10px 18px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            margin-bottom:4px;
        }
     
        .bank-logo-item img {
          max-width: 150px;
          height: auto;
          filter: grayscale(100%);
          opacity: 0.6;
          transition: all 0.3s ease;
        }
     
        .bank-logo-item:hover img {
          filter: grayscale(0%);
          opacity: 1;
          transform: scale(1.1);
        }
     
        /* Responsive */
        @media (max-width: 991px) {
          .modern-hero h1 {
            font-size: 2.5rem;
          }
          
          .modern-hero p {
            font-size: 1.1rem;
          }
     
          .modern-section-title h2 {
            font-size: 2.2rem;
          }
     
          .about-content h2 {
            font-size: 2rem;
          }
     
          .calculator-card {
            padding: 30px;
          }
        }
     
        @media (max-width: 767px) {
          .modern-hero {
            min-height: auto;
            padding: 80px 0 60px;
          }
     
          .modern-hero h1 {
            font-size: 2rem;
          }
     
          .modern-features {
            margin-top: 40px;
          }
     
          .feature-card {
            margin-bottom: 20px;
          }
     
          .modern-section-title h2 {
            font-size: 1.8rem;
          }
     
          .service-card {
            height: 350px;
            margin-bottom: 20px;
          }
     
          .about-image-wrapper::before {
            display: none;
          }
     
          .calculator-card {
            padding: 25px;
          }
     
          .calculator-card h2 {
            font-size: 1.8rem;
          }
     
          .result-value {
            font-size: 2.2rem;
          }
        }
        
        .bank-partner-carousel{
            overflow: hidden;
        }
        
        .bank-partner-carousel .owl-stage-outer{
            overflow: hidden;
        }
        
        .bank-partner-carousel .owl-item{
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .bank-partner-carousel img{
            width: 100%;
            max-width: 140px;
            height: auto;
            object-fit: contain;
        }
        
        
        
        
        /* Modern CTA Section */
.modern-cta-section {
  position: relative;
  padding: 50px 0;
  overflow: hidden;
}

/* Background Layers */
.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.cta-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #F5A623 0%, #1E88A8 100%);
  opacity: 0.95;
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}

/* Content Wrapper */
.cta-content-wrapper {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 60px 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* CTA Content */
.cta-content {
  color: #fff;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-badge i {
  font-size: 1.2rem;
}

.cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-bottom: 30px;
}

/* CTA Features */
.cta-features {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

.cta-feature-item i {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* CTA Button */
.cta-button-wrapper {
  position: relative;
}

.cta-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: #fff;
  color: #F5A623;
  padding: 20px 45px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.cta-primary-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: all 0.5s ease;
}

.cta-primary-btn:hover::before {
  left: 100%;
}

.cta-primary-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background: #1A1A2E;
  color: #fff;
  border-color: #fff;
}

.btn-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #F5A623 0%, #1E88A8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.cta-primary-btn:hover .btn-icon {
  background: #fff;
  color: #F5A623;
  transform: rotate(360deg);
}

/* Contact Info */
.cta-contact-info {
  margin-top: 25px;
  text-align: center;
}

.cta-contact-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-phone:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
  color: #fff;
}

.cta-phone i {
  font-size: 1.1rem;
  animation: phoneRing 2s ease infinite;
}

@keyframes phoneRing {
  0%, 100% {
    transform: rotate(0deg);
  }
  10%, 30% {
    transform: rotate(-15deg);
  }
  20%, 40% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(0deg);
  }
}

/* Floating Elements */
.cta-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 20s ease-in-out infinite;
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.circle-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  animation-delay: 5s;
}

.circle-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 10%;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.1);
  }
}

/* Responsive Styles */
@media (max-width: 991px) {
  .modern-cta-section {
    padding: 80px 0;
    margin: 60px 0;
  }

  .cta-content-wrapper {
    padding: 50px 40px;
  }

  .cta-title {
    font-size: 2.5rem;
  }

  .cta-description {
    font-size: 1.05rem;
  }

  .cta-features {
    gap: 20px;
  }

  .cta-button-wrapper {
    text-align: center !important;
  }
}

@media (max-width: 767px) {
  .modern-cta-section {
    padding: 60px 0;
    margin: 0px 0;
  }

  .cta-content-wrapper {
    padding: 40px 25px;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .cta-features {
    flex-direction: column;
    gap: 15px;
  }

  .cta-primary-btn {
    padding: 18px 35px;
    font-size: 1rem;
    width: 100%;
  }

  .btn-icon {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .cta-phone {
    font-size: 1.1rem;
  }

  .circle-1,
  .circle-2,
  .circle-3 {
    display: none;
  }
}

@media (max-width: 575px) {
  .cta-badge {
    font-size: 0.8rem;
    padding: 8px 20px;
  }

  .cta-title {
    font-size: 1.8rem;
  }
}
        
        
        /* Modern Footer Styles */
.modern-footer {
  background: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.modern-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #F5A623 0%, #1E88A8 100%);
}

.footer-main {
  padding: 80px 0 40px;
  position: relative;
}

/* Footer Widget */
.footer-widget {
  margin-bottom: 30px;
}

.footer-widget-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.footer-widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #F5A623 0%, #1E88A8 100%);
  border-radius: 2px;
}

.footer-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.read-more-link {
  color: #F5A623;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.read-more-link:hover {
  color: #fff;
  gap: 12px;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 5px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1.1rem;
}

.social-link:hover {
  background: linear-gradient(135deg, #F5A623 0%, #1E88A8 100%);
  transform: translateY(-3px);
  color: #fff;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.footer-links a i {
  font-size: 0.8rem;
  color: #F5A623;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #F5A623;
  padding-left: 8px;
}

.footer-links a:hover i {
  transform: translateX(3px);
}

/* Contact Info */
.contact-info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-info-item .icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  border-radius: 10px;
  background: linear-gradient(135deg, #F5A623 0%, #FF8A00 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
}

.contact-info-item .content {
  flex: 1;
}

.contact-info-item .label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  line-height: 1.1;
}

.contact-info-item a {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 3px;
  transition: all 0.3s ease;
}

.contact-info-item a:hover {
  color: #F5A623;
  padding-left: 5px;
}

.contact-info-item p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
  font-size: 0.9rem;
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 0.9rem;
}

.copyright-text strong {
  color: #F5A623;
  font-weight: 600;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #F5A623;
}

.footer-bottom-links .separator {
  color: rgba(255, 255, 255, 0.3);
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.scroll-to-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F5A623 0%, #1E88A8 100%);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(245, 166, 35, 0.4);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(245, 166, 35, 0.6);
}

/* Responsive */
@media (max-width: 767px) {
  .footer-main {
    padding: 60px 0 30px;
  }

  .footer-widget-title {
    font-size: 1.2rem;
  }

  .footer-bottom-links {
    justify-content: center;
  }

  .footer-bottom-links {
    flex-direction: row;
    gap: 8px;
  }
  .footer-bottom {
    padding: 10px 0;
  }
  .footer-bottom-links a {
    font-size: 0.7rem;
  }

  .footer-bottom-links .separator {
    display: none;
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
  }

  .scroll-btn {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
  }

  .contact-info-item {
    margin-bottom: 20px;
  }

  .social-links {
    justify-content: center;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .footer-bottom-links {
    justify-content: flex-end;
  }
}





/* ============ ABOUT SECTION ============ */
        .about-section {
            padding: 50px 0;
            position: relative;
        }
 
        .about-section.bg-light {
            background-color: #f5f7fb;
        }
 
        .section-title {
            margin-bottom: 3rem;
            animation: fadeInUp 0.8s ease-out;
        }
 
        .section-title h2 {
            font-size: 3rem;
            color: var(--dark-color);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
 
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 5px;
            background: var(--gradient-primary);
            border-radius: 10px;
        }
 
        .section-subtitle {
            color: var(--secondary-color);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }
 
        .section-text {
            font-size: 1rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 2rem;
        }
 
        .about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            animation: fadeInLeft 0.8s ease-out;
        }
 
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
 
        .about-image:hover img {
            transform: scale(1.05);
        }
 
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
 
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
 
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
 
        /* ============ DIRECTOR CARDS ============ */
        .director-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            animation: fadeInUp 0.8s ease-out;
        }
 
        .director-card:hover {
            box-shadow: 0 20px 50px rgba(245, 166, 35, 0.2);
        }
 
        .director-image {
            position: relative;
            overflow: hidden;
            height: 300px;
            background: var(--gradient-primary);
        }
 
        .director-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
 
        .director-card:hover .director-image img {
            transform: scale(1.1);
        }
 
        .director-badge {
            position: absolute;
            top: 6px;
            right: 6px;
            background: var(--secondary-color);
            color: white;
            padding: 2px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            z-index: 10;
        }
 
        .director-content {
            padding: 1.5rem;
            height:272px;
        }
 
        .director-content h3 {
            color: var(--dark-color);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
 
        .director-role {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 1rem;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
 
        .director-content p {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 0;
        }
 
        /* ============ VALUES SECTION ============ */
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
 
        .value-card {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 15px;
            border: 2px solid #f0f0f0;
            text-align: center;
            transition: all 0.4s ease;
            animation: fadeInUp 0.8s ease-out;
            position: relative;
            overflow: hidden;
        }
 
        .value-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
 
        .value-card:hover::before {
            transform: scaleX(1);
        }
 
        .value-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(245, 166, 35, 0.15);
        }
 
        .value-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
 
        .value-card h4 {
            color: var(--dark-color);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
 
        .value-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.7;
            margin: 0;
        }
 
        /* ============ TEAM SECTION ============ */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }
 
        .team-member {
            text-align: center;
            animation: fadeInUp 0.8s ease-out;
        }
 
        .member-image {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 1.5rem;
            height: 280px;
        }
 
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
 
        .team-member:hover .member-image img {
            transform: scale(1.1);
        }
 
        .member-info h4 {
            color: var(--dark-color);
            margin-bottom: 0.5rem;
            font-size: 1.3rem;
        }
 
        .member-role {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
 
        /* ============ CTA BUTTON ============ */
        .btn-primary-custom {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(245, 166, 35, 0.3);
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
 
        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(245, 166, 35, 0.4);
            color: white;
            text-decoration: none;
        }
 
        /* ============ RESPONSIVE ============ */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
 
            .section-title h2 {
                font-size: 2rem;
            }
 
            .about-section {
                padding: 30px 0;
            }
 
            .values-grid {
                grid-template-columns: 1fr;
            }
            .team-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 0.5rem;
            }
 
            .hero-section::before {
                width: 300px;
                height: 300px;
                right: -5%;
            }
 
            .hero-section::after {
                width: 250px;
                height: 250px;
            }
            
            .director-content {
                height:auto;
            }
            .team-member {
                margin-bottom: 1rem;
            }
            .member-image {
                margin-bottom: 0.5rem;
                height: 115px;
            }
            .member-info h4 {
                margin-bottom: 0rem;
                font-size: 1rem;
            }
            .member-role {
                font-size: 0.8rem;
            }
        }
 
        /* ============ ANIMATION DELAYS ============ */
        .director-card:nth-child(1) {
            animation-delay: 0.1s;
        }
 
        .director-card:nth-child(2) {
            animation-delay: 0.2s;
        }
 
        .director-card:nth-child(3) {
            animation-delay: 0.3s;
        }
 
        .value-card:nth-child(1) {
            animation-delay: 0.1s;
        }
 
        .value-card:nth-child(2) {
            animation-delay: 0.2s;
        }
 
        .value-card:nth-child(3) {
            animation-delay: 0.3s;
        }
 
        .value-card:nth-child(4) {
            animation-delay: 0.4s;
        }
 
        .team-member:nth-child(1) {
            animation-delay: 0.1s;
        }
 
        .team-member:nth-child(2) {
            animation-delay: 0.2s;
        }
 
        .team-member:nth-child(3) {
            animation-delay: 0.3s;
        }
 
        .team-member:nth-child(4) {
            animation-delay: 0.4s;
        }
 
        .team-member:nth-child(5) {
            animation-delay: 0.5s;
        }
 
        .team-member:nth-child(6) {
            animation-delay: 0.6s;
        }
        
        
        
/* ============ SERVICES GRID ============ */
        .services-container {
            padding: 100px 0;
        }
 
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-bottom: 4rem;
        }
 
        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            animation: fadeInUp 0.6s ease-out;
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
 
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(245, 166, 35, 0.2);
        }
 
        /* Service Image Container */
        .service-image-wrapper {
            position: relative;
            overflow: hidden;
            height: 250px;
            background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
        }
 
        .service-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
 
        .service-card:hover .service-image-wrapper img {
            transform: scale(1.15) rotate(2deg);
        }
 
        /* Service Overlay */
        .service-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--gradient-primary);
            opacity: 0;
            transition: opacity 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: white;
            text-align: center;
            padding: 2rem;
            z-index: 10;
        }
 
        .service-card:hover .service-overlay {
            opacity: 0.95;
        }
 
        .service-overlay-content h4 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: white;
        }
 
        .service-overlay-content p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 1.5rem;
        }
 
        .service-overlay-btn {
            display: inline-block;
            background: white;
            color: var(--primary-color);
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
 
        .service-overlay-btn:hover {
            background: var(--dark-color);
            color: white;
            transform: translateY(-3px);
        }
 
        /* Service Content */
        .service-content {
            padding: 2rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
 
        .service-title {
            font-size: 1.3rem;
            color: var(--dark-color);
            margin-bottom: 1rem;
            font-weight: 700;
            transition: color 0.3s ease;
        }
 
        .service-card:hover .service-title {
            color: var(--primary-color);
        }
 
        .service-description {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }
 
        .service-badge {
            display: inline-block;
            background: var(--light-color);
            color: var(--secondary-color);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            width: fit-content;
        }
 
        /* ============ SERVICE CARD ANIMATIONS ============ */
        .service-card:nth-child(1) { animation-delay: 0.1s; }
        .service-card:nth-child(2) { animation-delay: 0.2s; }
        .service-card:nth-child(3) { animation-delay: 0.3s; }
        .service-card:nth-child(4) { animation-delay: 0.4s; }
        .service-card:nth-child(5) { animation-delay: 0.5s; }
        .service-card:nth-child(6) { animation-delay: 0.6s; }
        .service-card:nth-child(7) { animation-delay: 0.7s; }
        .service-card:nth-child(8) { animation-delay: 0.8s; }
        .service-card:nth-child(9) { animation-delay: 0.9s; }
        .service-card:nth-child(10) { animation-delay: 1s; }
        .service-card:nth-child(11) { animation-delay: 1.1s; }
        .service-card:nth-child(12) { animation-delay: 1.2s; }
        .service-card:nth-child(13) { animation-delay: 1.3s; }
        .service-card:nth-child(14) { animation-delay: 1.4s; }
 
        /* ============ CTA SECTION ============ */
        .cta-section {
            background: var(--gradient-secondary);
            padding: 4rem 2rem;
            border-radius: 15px;
            color: white;
            text-align: center;
            margin-top: 3rem;
            animation: fadeInUp 0.8s ease-out;
        }
 
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: white;
        }
 
        .cta-section p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }
 
        .cta-section h2::after {
            display: none;
        }
 
        .btn-cta {
            background: var(--gradient-primary);
            color: white;
            border: none;
            padding: 15px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(245, 166, 35, 0.4);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            cursor: pointer;
            border: none;
        }
 
        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(245, 166, 35, 0.5);
            color: white;
            text-decoration: none;
        }
 
        /* ============ RESPONSIVE ============ */
        @media (max-width: 768px) {
            .section-header h2 {
                font-size: 2rem;
            }
 
            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
 
            .service-image-wrapper {
                height: 200px;
            }
 
            .cta-section h2 {
                font-size: 1.8rem;
            }
 
            .service-card:hover {
                transform: translateY(-10px);
            }
        }
 
        /* ============ UTILITY CLASSES ============ */
        .text-center {
            text-align: center;
        }
 
        .mt-4 {
            margin-top: 2rem;
        }
 
        .mb-4 {
            margin-bottom: 2rem;
        }
        
   
   
   /* Modern Contact Info Section */
.modern-contact-info-section {
  padding: 100px 0 50px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.modern-section-title .subtitle {
  color: #F5A623;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.modern-section-title h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1A1A2E;
  margin-bottom: 20px;
  line-height: 1.2;
}

.modern-section-title .highlight {
  background: linear-gradient(135deg, #F5A623 0%, #1E88A8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.modern-section-title .title-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(135deg, #F5A623 0%, #1E88A8 100%);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.modern-section-title p {
  font-size: 1.1rem;
  color: #666;
}

/* Contact Info Cards */
.contact-info-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #F5A623 0%, #1E88A8 100%);
  transform: scaleX(0);
  transition: all 0.4s ease;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.contact-info-card:hover::before {
  transform: scaleX(1);
}

/* Card Icons */
.card-icon-wrapper {
  position: relative;
  margin-bottom: 30px;
  display: inline-block;
}

.card-icon-bg {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.1) 0%, rgba(30, 136, 168, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(245, 166, 35, 0.3);
  transition: all 0.4s ease;
}

.card-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #F5A623 0%, #1E88A8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  box-shadow: 0 10px 30px rgba(245, 166, 35, 0.3);
  transition: all 0.4s ease;
}

.contact-info-card:hover .card-icon-bg {
  transform: scale(1.1) rotate(10deg);
}

.contact-info-card:hover .card-icon {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 15px 40px rgba(245, 166, 35, 0.5);
}

/* Card Content */
.card-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1A1A2E;
  margin-bottom: 20px;
}

.card-content p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.card-link {
  color: #F5A623;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.card-link:hover {
  gap: 12px;
  color: #1E88A8;
}

/* Contact Items */
.contact-item {
  margin-bottom: 15px;
  text-align: left;
}

.contact-item strong {
  display: block;
  color: #1A1A2E;
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.contact-item a {
  color: #666;
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.contact-item a:hover {
  color: #F5A623;
  padding-left: 5px;
}

.contact-item a i {
  color: #F5A623;
}

/* Hours List */
.hours-list {
  text-align: left;
  margin-bottom: 20px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.hours-item .day {
  font-weight: 600;
  color: #1A1A2E;
}

.hours-item .time {
  color: #666;
}

.hours-item.closed .time {
  color: #e74c3c;
  font-weight: 600;
}

/* Availability Badge */
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(46, 204, 113, 0.1);
  padding: 10px 20px;
  border-radius: 50px;
  color: #27ae60;
  font-weight: 600;
  font-size: 0.9rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #27ae60;
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

/* Modern Contact Form Section */
.modern-contact-form-section {
  padding: 50px 0 100px;
  background: #fff;
}

/* Map Wrapper */
.map-wrapper {
  position: relative;
  height: 650px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-container {
  width: 100%;
  height: 100%;
}

.map-container iframe {
  width: 100%;
  height: 100%;
}

.map-overlay {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-info {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #1A1A2E;
  font-weight: 700;
  font-size: 1.1rem;
}

.map-info i {
  font-size: 2rem;
  color: #F5A623;
  animation: bounce 2s ease infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Contact Form Wrapper */
.contact-form-wrapper {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header {
  margin-bottom: 15px;
}

.form-header h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #1A1A2E;
  margin-bottom: 5px;
}

.form-header p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Alert Message */
.alert-message {
  background: linear-gradient(135deg, rgba(245, 166, 35, 0.1) 0%, rgba(30, 136, 168, 0.1) 100%);
  border-left: 4px solid #F5A623;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  color: #1A1A2E;
  font-weight: 500;
}

/* Form Groups */
.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #1A1A2E;
  font-size: 0.95rem;
}

.form-group label i {
  color: #F5A623;
  font-size: 1.1rem;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.form-control:focus {
  outline: none;
  border-color: #F5A623;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.error-message {
  display: block;
  color: #e74c3c;
  font-size: 0.85rem;
  margin-top: 8px;
  font-weight: 500;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: linear-gradient(135deg, #F5A623 0%, #1E88A8 100%);
  color: #fff;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(245, 166, 35, 0.3);
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(245, 166, 35, 0.5);
}

.submit-btn .btn-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.submit-btn:hover .btn-icon {
  background: #fff;
  color: #F5A623;
  transform: rotate(45deg);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .modern-contact-info-section {
    padding: 80px 0 40px;
  }

  .modern-section-title h2 {
    font-size: 2.2rem;
  }

  .map-wrapper {
    height: 450px;
  }

  .contact-form-wrapper {
    padding: 20px;
  }

  .form-header h3 {
    font-size: 1.8rem;
  }
}

@media (max-width: 767px) {
  .modern-contact-info-section {
    padding: 60px 0 30px;
  }

  .modern-section-title h2 {
    font-size: 1.8rem;
  }

  .contact-info-card {
    padding: 30px 20px;
  }

  .card-icon-bg {
    width: 100px;
    height: 100px;
    font-size: 3rem;
  }

  .card-icon {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }

  .map-wrapper {
    height: 350px;
    margin-bottom: 30px;
  }

  .map-overlay {
    bottom: 15px;
    left: 15px;
    right: 15px;
    padding: 15px 20px;
  }

  .map-info {
    font-size: 1rem;
  }

  .map-info i {
    font-size: 1.5rem;
  }

  .contact-form-wrapper {
    padding: 20px;
  }

  .form-header h3 {
    font-size: 1.2rem;
  }

  .submit-btn {
    padding: 16px 30px;
    font-size: 1rem;
  }
  
  
}




/* Gallery Hero Section */
    .gallery-hero {
      background: linear-gradient(135deg, #F5A623 0%, #1E88A8 100%);
      padding: 120px 0 80px;
      position: relative;
      overflow: hidden;
    }

    .gallery-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
      opacity: 0.3;
    }

    .gallery-hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: #fff;
    }

    .gallery-hero h1 {
      font-size: 3.5rem;
      font-weight: 800;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    }

    .gallery-hero p {
      font-size: 1.2rem;
      opacity: 0.95;
      max-width: 600px;
      margin: 0 auto;
    }

    /* Gallery Section */
    .blog-area {
      padding: 80px 0 100px;
      background: var(--light-color);
    }

    /* Section Title */
    .modern-section-title {
      text-align: center;
      margin-bottom: 60px;
    }

    .modern-section-title .subtitle {
      color: var(--primary-color);
      font-weight: 600;
      font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 15px;
      display: block;
    }

    .modern-section-title h2 {
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--dark-color);
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .modern-section-title .highlight {
      background: var(--gradient-primary);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Filter Tabs */
    .gallery-filters {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-bottom: 50px;
      flex-wrap: wrap;
    }

    .filter-btn {
      padding: 12px 30px;
      background: #fff;
      border: 2px solid #e0e0e0;
      border-radius: 50px;
      color: var(--dark-color);
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      font-size: 0.95rem;
    }

    .filter-btn:hover,
    .filter-btn.active {
      background: var(--gradient-primary);
      color: #fff;
      border-color: transparent;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
    }

    /* Gallery Grid */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 30px;
    }

    /* Gallery Card */
    .blog-wrapper {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      cursor: pointer;
    }

    .blog-wrapper:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }

    /* Image Container */
    .blog-img {
      position: relative;
      overflow: hidden;
      height: 280px;
      background: #f0f0f0;
    }

    .blog-img::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
      opacity: 0;
      transition: all 0.4s ease;
      z-index: 2;
    }

    .blog-wrapper:hover .blog-img::before {
      opacity: 1;
    }

    .blog-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.5s ease;
    }

    .blog-wrapper:hover .blog-img img {
      transform: scale(1.1);
    }

    /* Image Overlay */
    .image-overlay {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 3;
      opacity: 0;
      transition: all 0.4s ease;
    }

    .blog-wrapper:hover .image-overlay {
      opacity: 1;
    }

    .overlay-btn {
      width: 60px;
      height: 60px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: var(--primary-color);
      transition: all 0.3s ease;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    }

    .overlay-btn:hover {
      transform: scale(1.1);
      background: var(--gradient-primary);
      color: #fff;
    }

    /* Card Content */
    .blog-text {
      padding: 25px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .blog-text h4 {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--dark-color);
      margin-bottom: 10px;
      line-height: 1.4;
    }

    .blog-text h4 a {
      color: var(--dark-color);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .blog-wrapper:hover .blog-text h4 a {
      color: var(--primary-color);
    }

    .blog-meta {
      display: flex;
      gap: 15px;
      margin-top: auto;
      padding-top: 15px;
      border-top: 1px solid #f0f0f0;
    }

    .meta-item {
      display: flex;
      align-items: center;
      gap: 5px;
      color: #666;
      font-size: 0.9rem;
    }

    .meta-item i {
      color: var(--primary-color);
    }

    /* No Images Message */
    .no-images {
      text-align: center;
      padding: 80px 20px;
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }

    .no-images i {
      font-size: 5rem;
      color: #e0e0e0;
      margin-bottom: 20px;
    }

    .no-images h3 {
      font-size: 1.8rem;
      color: var(--dark-color);
      margin-bottom: 10px;
    }

    .no-images p {
      color: #666;
      font-size: 1.1rem;
    }

    /* Modern Pagination */
    .pagination-style {
      margin-top: 60px;
    }

    .pagination-style ul {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      list-style: none;
      padding: 0;
      margin: 0;
      flex-wrap: wrap;
    }

    .pagination-style ul li {
      margin: 0;
    }

    .pagination-style ul li a,
    .pagination-style ul li strong {
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 45px;
      height: 45px;
      padding: 0 15px;
      background: #fff;
      border: 2px solid #e0e0e0;
      border-radius: 12px;
      color: var(--dark-color);
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      font-size: 1rem;
    }

    .pagination-style ul li a:hover,
    .pagination-style ul li strong,
    .pagination-style ul li a.active {
      background: var(--gradient-primary);
      color: #fff;
      border-color: transparent;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(245, 166, 35, 0.3);
    }

    .pagination-style ul li a i {
      font-size: 1.2rem;
    }

    /* Lightbox Modal */
    .lightbox-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.95);
      z-index: 9999;
      padding: 20px;
      animation: fadeIn 0.3s ease;
    }

    .lightbox-modal.active {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    .lightbox-content {
      position: relative;
      max-width: 90%;
      max-height: 90%;
      animation: zoomIn 0.3s ease;
    }

    @keyframes zoomIn {
      from {
        transform: scale(0.8);
      }
      to {
        transform: scale(1);
      }
    }

    .lightbox-content img {
      max-width: 100%;
      max-height: 90vh;
      border-radius: 15px;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    }

    .lightbox-close {
      position: absolute;
      top: -50px;
      right: 0;
      width: 50px;
      height: 50px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.5rem;
      color: var(--dark-color);
      transition: all 0.3s ease;
    }

    .lightbox-close:hover {
      background: var(--primary-color);
      color: #fff;
      transform: rotate(90deg);
    }

    .lightbox-title {
      position: absolute;
      bottom: -60px;
      left: 0;
      right: 0;
      color: #fff;
      text-align: center;
      font-size: 1.2rem;
      font-weight: 600;
    }

    .lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 50px;
      background: rgba(255, 255, 255, 0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 1.5rem;
      color: var(--dark-color);
      transition: all 0.3s ease;
    }

    .lightbox-nav:hover {
      background: var(--primary-color);
      color: #fff;
    }

    .lightbox-prev {
      left: -70px;
    }

    .lightbox-next {
      right: -70px;
    }

    /* Loading Animation */
    .loading {
      text-align: center;
      padding: 40px;
    }

    .loading-spinner {
      width: 50px;
      height: 50px;
      border: 5px solid #f3f3f3;
      border-top: 5px solid var(--primary-color);
      border-radius: 50%;
      animation: spin 1s linear infinite;
      margin: 0 auto;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    /* Responsive */
    @media (max-width: 1200px) {
      .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 25px;
      }
    }

    @media (max-width: 991px) {
      .gallery-hero {
        padding: 100px 0 60px;
      }

      .gallery-hero h1 {
        font-size: 2.5rem;
      }

      .modern-section-title h2 {
        font-size: 2.2rem;
      }

      .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
      }
    }

    @media (max-width: 767px) {
      .gallery-hero {
        padding: 80px 0 50px;
      }

      .gallery-hero h1 {
        font-size: 2rem;
      }

      .gallery-hero p {
        font-size: 1rem;
      }

      .blog-area {
        padding: 60px 0 80px;
      }

      .modern-section-title h2 {
        font-size: 1.8rem;
      }

      .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .blog-img {
        height: 250px;
      }

      .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
      }

      .lightbox-prev {
        left: 10px;
      }

      .lightbox-next {
        right: 10px;
      }

      .lightbox-close {
        top: 10px;
        right: 10px;
      }
      
      .about-stats{
        grid-template-columns: repeat(auto-fit, minmax(75px, 1fr));
        gap: 10px;
        margin-top: 20px;
      }
      .stat-item{  padding: 10px;}
      .stat-item .number {font-size: 1.5rem;}
      .stat-item .label {font-size: 0.75rem;}
      
      .apply-btn {margin-bottom:0 !important;}
      .services-section, .why-choose-section, .bank-logos-section {padding: 30px 0;}
      .copyright-text { font-size: 0.7rem; }
      .value-card p {
        font-size: 0.8rem;
        line-height: 1.7 !important;
      }
        .value-card {  padding: 1.5rem 1rem;  }
        .single-portfolio .portfolio-thumb {
            height: 165px;
        }
    .feature-card .icon{    width: 60px; height: 60px;  font-size: 2rem;    margin-bottom: 15px;}
    .feature-card p {  margin-bottom: 15px; }
      
    }

    @media (max-width: 575px) {
      .pagination-style ul li a,
      .pagination-style ul li strong {
        min-width: 40px;
        height: 40px;
        padding: 0 12px;
        font-size: 0.9rem;
      }
    }