:root {
  --primary: #1a3a6c;
  --secondary: #0065b3;
  --accent: #1a3a6c;
  --light: #f8f9fa;
  --dark: #212529;
}

* {
  margin: 0;
  padding: 0;
  font-size: 16px;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

i {
  font-size: inherit;
}

a {
  text-decoration: none;
}

body {
  background-color: #f5f7fa;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

.common-space {
  padding: 100px 0;
}

.top-bar {
  background: linear-gradient(90deg, var(--primary), #0d2a4d);
  color: white;
  padding: 8px 0;
  font-size: 0.9rem;
}
.top-bar .contact-info a {
  font-size: 13px;
  color: white;
  text-decoration: none;
  margin-right: 20px;
  transition: all 0.3s;
}
.top-bar .contact-info a:hover {
  color: #ffcc00;
}
.top-bar .social-icons a {
  color: white;
  margin-left: 15px;
  font-size: 13px;
  transition: all 0.3s;
}
.top-bar .social-icons a:hover {
  color: var(--secondary);
  transform: translateY(-3px);
}

.navbar {
  background-color: white;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  transition: all 0.4s;
}
.navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.navbar .navbar-brand {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.8rem;
  letter-spacing: -0.5px;
}
.navbar .navbar-brand img {
  max-width: 250px;
}
.navbar .navbar-brand span {
  color: var(--secondary);
  font-weight: 800;
}
.navbar .nav-link {
  font-weight: 600;
  color: #212529;
  margin: 0 10px;
  position: relative;
  padding: 5px 0;
  text-transform: uppercase;
}
.navbar .nav-link:hover:after, .navbar .nav-link.active:after {
  width: 100%;
}
.navbar .nav-link:hover, .navbar .nav-link.active {
  color: var(--secondary);
}

.hero-slider {
  position: relative;
}
.hero-slider .owl-item {
  transition: transform 0.5s;
}
.hero-slider .slide-item {
  background-size: cover;
  background-position: center;
  height: 600px;
  position: relative;
  display: flex;
  align-items: center;
}
.hero-slider .slide-item .slide-content {
  position: relative;
  color: white;
  max-width: 700px;
}
.hero-slider .slide-item .slide-content h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 3px 3px rgba(0, 0, 0, 0.5411764706);
}
.hero-slider .slide-item .slide-content .btn {
  border-radius: 0;
  background-color: var(--primary);
  padding: 15px 25px;
  border: none;
}
.hero-slider .slide-item .slide-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.hero-slider .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
}
.hero-slider .owl-prev,
.hero-slider .owl-next {
  background: rgba(255, 255, 255, 0.3) !important;
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  color: white !important;
  font-size: 24px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.hero-slider .owl-prev:hover,
.hero-slider .owl-next:hover {
  background: var(--secondary) !important;
}
.hero-slider .owl-dots {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
}
.hero-slider .owl-dots.active span {
  background: var(--secondary) !important;
  width: 40px;
  border-radius: 10px !important;
}

.section-title {
  position: relative;
  margin-bottom: 40px;
}
.section-title h2 {
  font-weight: 700;
  color: var(--primary);
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}
.section-title h2:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary);
}

.about-section {
  background: white;
}
.about-section .about-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.about-section .about-content {
  padding-left: 50px;
}
.about-section .about-content p {
  margin-bottom: 20px;
  font-size: 1.1rem;
}
.about-section .about-content .feature-box {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}
.about-section .about-content .feature-box h4 {
  font-size: 18px;
  font-weight: 600;
}
.about-section .about-content .feature-box .feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(230, 57, 70, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}
.about-section .about-content .feature-box .feature-icon i {
  color: var(--secondary);
  font-size: 1.8rem;
}

.services {
  background: #f5f7fa;
  background-image: linear-gradient(110deg, rgb(255, 255, 255), rgba(255, 255, 255, 0.8)), url(img/bnr-1.avif);
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.services .service-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  margin-bottom: 30px;
  border: none;
  margin-top: 2rem;
}
.services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.services .service-card .service-icon {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto 0px;
  color: white;
  transform: translateY(-45px);
  font-size: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.services .service-card .card-body {
  padding: 0 30px 30px;
}
.services .service-card .card-body h3 {
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 17px;
  text-align: center;
}

.cta {
  background: linear-gradient(90deg, var(--primary), #0d2a4d);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  transform: rotate(30deg);
}
.cta .brn-wrappe .btn:nth-child(2) {
  background-color: var(--secondary);
  border: transparent;
}
.cta .brn-wrappe .btn:nth-child(2):hover {
  background-color: #fff;
  color: #fff;
  color: #000;
}
.cta .cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.cta .cta-content h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.cta .cta-content p {
  font-size: 1.2rem;
  margin: 0 auto 40px;
}
.cta .btn-outline-light {
  border: 2px solid white;
  color: white;
  padding: 12px 40px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cta .btn-outline-light:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.blogs {
  background: white;
}
.blogs .blog-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  height: 100%;
  margin-bottom: 30px;
}
.blogs .blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.blogs .blog-card .blog-img {
  height: 220px;
  overflow: hidden;
}
.blogs .blog-card .blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.5s;
}
.blogs .blog-card:hover .blog-img img {
  transform: scale(1.1);
}
.blogs .blog-card .blog-content {
  padding: 25px;
}
.blogs .blog-card .blog-content .blog-date {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.blogs .blog-card .blog-content h3 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}
.blogs .blog-card .blog-content a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.blogs .blog-card .blog-content a i {
  margin-left: 5px;
  transition: all 0.3s;
}
.blogs .blog-card .blog-content a:hover i {
  transform: translateX(5px);
}

.clients {
  background: #fff;
}
.clients .client-logo {
  background: white;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 20px;
  margin: 10px;
  transition: all 0.3s;
}
.clients .client-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.clients .client-logo img {
  max-width: 100%;
  max-height: 80px;
  opacity: 0.7;
  transition: all 0.3s;
}
.clients .client-logo:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.footer {
  background: #1a1a2e;
  color: #fff;
  width: 100%;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
  /* Column 1: Logo & About */
  /* Column 3: Services */
  /* Column 4: Contact */
  /* Footer Bottom */
}
.footer .footer-top {
  display: flex;
  padding: 60px 40px 40px;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-col {
  flex: 1;
  min-width: 220px;
}
.footer .footer-col h3 {
  position: relative;
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 10px;
}
.footer .footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #ff6b6b, var(--secondary));
  border-radius: 3px;
}
.footer .footer-col.logo-col .logo {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.footer .logo-icon {
  font-size: 32px;
  color: var(--secondary);
  margin-right: 15px;
}
.footer .logo-text {
  filter: brightness(0) invert(1);
}
.footer .about-text {
  line-height: 1.8;
  color: #b1b1b1;
  margin-bottom: 25px;
}
.footer .social-links {
  display: flex;
  gap: 15px;
}
.footer .social-links a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}
.footer .social-links a:hover {
  background: var(--secondary);
  transform: translateY(-5px);
}
.footer .footer-col.services-col ul {
  list-style: none;
  padding-left: 0;
}
.footer .footer-col.services-col ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.footer .footer-col.services-col ul li::before {
  content: "\f0a4";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--secondary);
  margin-right: 15px;
}
.footer .footer-col.services-col ul li a {
  color: #b1b1b1;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer .footer-col.services-col ul li a:hover {
  color: var(--secondary);
  transform: translateX(5px);
}
.footer .contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.footer .contact-icon {
  min-width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--secondary);
  font-size: 18px;
}
.footer .contact-text {
  color: #b1b1b1;
  line-height: 1.6;
}
.footer .contact-text a {
  color: #b1b1b1;
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}
.footer .contact-text a:hover {
  color: var(--secondary);
}
.footer .footer-bottom {
  padding: 25px 40px;
  align-items: center;
  gap: 20px;
  background: rgba(0, 0, 0, 0.2);
}
.footer .copyright {
  color: #b1b1b1;
  font-size: 14px;
  text-align: center;
}
.footer .footer-links {
  display: flex;
  gap: 25px;
}
.footer .footer-links a {
  color: #b1b1b1;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}
.footer .footer-links a:hover {
  color: var(--secondary);
}

.breadcrumb-section {
  background: linear-gradient(rgba(26, 58, 108, 0.85), rgba(26, 58, 108, 0.9)), url("https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1770&q=80");
  background-size: cover;
  background-position: center;
  padding: 120px 0 80px;
  color: white;
  text-align: center;
  position: relative;
}
.breadcrumb-section .breadcrumb-container {
  background: rgba(255, 255, 255, 0.15);
  padding: 15px 20px;
  border-radius: 8px;
  color: #fff;
  display: inline-block;
  margin-top: 20px;
}
.breadcrumb-section .breadcrumb-container .breadcrumb {
  margin-bottom: 0;
  background: transparent;
}
.breadcrumb-section .breadcrumb-container .breadcrumb .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.breadcrumb-section .breadcrumb-container .breadcrumb .breadcrumb-item.active {
  color: white;
}
.breadcrumb-section .breadcrumb-item .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.6);
}

.mission-vision {
  background-color: #fff;
}
.mission-vision .mv-card {
  background: white;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
  border-top: 4px solid var(--primary);
}
.mission-vision .mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.mission-vision .mv-card.mission {
  border-top-color: var(--secondary);
}
.mission-vision .mv-card.mission .mv-icon {
  color: var(--secondary);
}
.mission-vision .mv-card h3 {
  font-weight: 600;
  color: #212121;
}
.mission-vision .mv-card.vision {
  border-top-color: var(--primary);
}
.mission-vision .mv-card.vision .mv-icon {
  color: var(--primary);
}
.mission-vision .mv-card .mv-icon {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.values-section {
  padding: 80px 0;
  background: #f5f7fa;
}
.values-section .value-card {
  background: white;
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(26, 58, 108, 0.1);
}
.values-section .value-card h3 {
  margin-bottom: 15px;
  color: #1a3a6c;
  margin-bottom: 15px;
  color: #1a3a6c;
  font-weight: 600;
  font-size: 19px;
}
.values-section .value-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #1a3a6c;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.values-section .value-card .value-icon {
  font-size: 3.5rem;
  color: #1a3a6c;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.values-section .value-card:hover .value-icon {
  color: #e63946;
  transform: scale(1.1);
}
.values-section .value-card:hover:before {
  transform: scaleX(1);
}
.values-section .section-title h2:after {
  background: #2a9d8f;
}

/* Services Page Specific Styles */
.services-page .service-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s;
  height: 100%;
  margin-bottom: 30px;
  position: relative;
}
.services-page .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.services-page .service-card .service-img {
  height: 200px;
  overflow: hidden;
}
.services-page .service-card .service-img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}
.services-page .service-card:hover .service-img img {
  transform: scale(1.05);
}
.services-page .service-card .service-content {
  padding: 25px;
  position: relative;
}
.services-page .service-card .service-content .service-icon {
  position: absolute;
  top: -30px;
  right: 25px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.services-page .service-card .service-content h3 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
  padding-right: 70px;
  font-size: 18px;
}
.services-page .service-card .service-content p {
  color: #555;
  margin-bottom: 20px;
}
.services-page .service-card .service-content .btn-outline-primary {
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
}
.services-page .service-card .service-content .btn-outline-primary:hover {
  background: var(--primary);
  color: white;
}

.faqs-container {
  width: 100%;
  background: white;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(26, 58, 108, 0.15);
  overflow: hidden;
}
.faqs-container .faqs-header {
  background: linear-gradient(90deg, var(--primary), #0d2a4d);
  color: white;
  text-align: center;
  padding: 40px 20px;
}
.faqs-container .faqs-header h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 700;
}
.faqs-container .faqs-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}
.faqs-container .faq-item {
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #eaeaea;
}
.faqs-container .faq-item:hover {
  box-shadow: 0 8px 25px rgba(26, 58, 108, 0.1);
  transform: translateY(-3px);
}
.faqs-container .faq-question {
  background: rgba(26, 58, 108, 0.03);
  padding: 25px;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.faqs-container .faq-question:hover {
  background: rgba(26, 58, 108, 0.07);
}
.faqs-container .faq-question i {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
.faqs-container .faq-question.active i {
  transform: rotate(180deg);
  color: var(--secondary);
}
.faqs-container .faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  color: #444;
  line-height: 1.8;
  background: white;
}
.faqs-container .faq-answer.show {
  padding: 25px;
  max-height: 500px;
}
.faqs-container .contact-cta {
  text-align: center;
  padding: 30px 0 10px;
}
.faqs-container .contact-cta p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 25px;
}
.faqs-container .btn {
  display: inline-block;
  background: var(--secondary);
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary);
  box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
}
.faqs-container .btn:hover {
  background: white;
  color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
}

.contact-section .contact-info-card,
.contact-section .contact-form-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  height: 100%;
}
.contact-section .contact-info-card h3,
.contact-section .contact-form-card h3 {
  font-size: 25px;
  color: #1a3a6c;
  margin-bottom: 25px;
  border-bottom: 2px solid #007bff;
  padding-bottom: 10px;
  font-weight: 700;
}
.contact-section .contact-info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.contact-section .contact-info-item i {
  font-size: 1.8rem;
  color: #007bff;
  margin-right: 15px;
  width: 40px;
  text-align: center;
}
.contact-section .contact-info-item .text-content h5 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 5px;
}
.contact-section .contact-info-item .text-content p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 0;
}
.contact-section .contact-info-card .social-icons {
  margin-top: 30px;
  text-align: left;
}
.contact-section .contact-info-card .social-icons .list-inline-item a {
  background-color: rgba(103, 187, 233, 0.1);
  color: #007bff;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  margin-right: 10px;
}
.contact-section .contact-info-card .social-icons .list-inline-item a:hover {
  background-color: #007bff;
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.contact-section .contact-form-card .form-group {
  margin-bottom: 20px;
}
.contact-section .contact-form-card .form-control {
  border-radius: 5px;
  padding: 12px 18px;
  border: 1px solid #ddd;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-section .contact-form-card .form-control:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.25rem rgba(103, 187, 233, 0.25);
  outline: none;
}
.contact-section .contact-form-card textarea.form-control {
  min-height: 120px;
  resize: vertical;
}
.contact-section .contact-form-card .btn-primary {
  width: 100%;
  padding: 12px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-section .contact-form-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.contact-section .map-section {
  padding: 0 0 70px 0;
  background-color: #f8f9fa;
}
.contact-section .map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  height: 450px;
}
.contact-section .map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.blog-section {
  padding: 80px 0;
  /* Newsletter */
}
.blog-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}
.blog-section .section-header h2 {
  font-size: 2.5rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}
.blog-section .section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary);
}
.blog-section .section-header p {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 20px auto 0;
}
.blog-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}
.blog-section .blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-section .blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.blog-section .blog-img {
  height: 250px;
  overflow: hidden;
  position: relative;
}
.blog-section .blog-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s;
}
.blog-section .blog-card:hover .blog-img img {
  transform: scale(1.05);
}
.blog-section .category-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}
.blog-section .blog-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.blog-section .blog-meta {
  display: flex;
  margin-bottom: 15px;
  color: var(--gray);
  font-size: 0.9rem;
}
.blog-section .blog-meta span {
  margin-right: 20px;
  display: flex;
  align-items: center;
}
.blog-section .blog-meta i {
  margin-right: 8px;
  color: var(--secondary);
}
.blog-section .blog-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--primary);
  flex-grow: 1;
}
.blog-section .blog-content p {
  color: #555;
  margin-bottom: 20px;
}
.blog-section .btn-read-more {
  display: inline-flex;
  align-items: center;
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  width: -moz-fit-content;
  width: fit-content;
}
.blog-section .btn-read-more i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}
.blog-section .btn-read-more:hover {
  color: var(--primary);
}
.blog-section .btn-read-more:hover i {
  transform: translateX(5px);
}
.blog-section .pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.blog-section .pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  margin: 0 5px;
  border-radius: 50%;
  background: white;
  color: var(--dark);
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  font-weight: 600;
}
.blog-section .pagination a:hover,
.blog-section .pagination a.active {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}
.blog-section .newsletter-section {
  background: linear-gradient(90deg, var(--primary), #0d2a4d);
  padding: 80px 0;
  color: white;
  text-align: center;
}
.blog-section .newsletter-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}
.blog-section .newsletter-container h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.blog-section .newsletter-container p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}
.blog-section .newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}
.blog-section .newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 50px 0 0 50px;
  font-size: 1rem;
}
.blog-section .newsletter-form button {
  background: var(--secondary);
  color: white;
  border: none;
  padding: 0 30px;
  border-radius: 0 50px 50px 0;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}
.blog-section .newsletter-form button:hover {
  background: #d32f2f;
}

@media (max-width: 1024px) {
  .about-section .about-content {
    padding-left: 15px;
  }
  .footer .footer-top {
    padding: 25px 15px;
  }
}
@media (max-width: 991px) {
  .slide-content {
    padding: 0 30px;
    text-align: center;
  }
  .about-content {
    padding-left: 0;
  }
  .section-title h2 {
    font-size: 2rem;
  }
  .hero-slider .slide-item .slide-content h1 {
    font-size: 2rem;
  }
  .common-space {
    padding: 40px 0;
  }
  .cta .cta-content h2 {
    font-size: 1.8rem;
  }
  .blogs .blog-card {
    height: auto;
  }
  .footer .footer-top {
    padding: 25px 15px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .cta .btn-outline-light {
    padding: 7px 24px;
    letter-spacing: 1px;
    font-size: 15px;
  }
  .about-img {
    margin-bottom: 15px;
  }
  .breadcrumb-section {
    padding: 33px 0 30px;
  }
  .breadcrumb-section h1 {
    font-size: 27px;
    margin-bottom: 0;
  }
  .breadcrumb-section .breadcrumb-container {
    padding: 6px 14px;
    border-radius: 8px;
    color: #fff;
    display: inline-block;
    margin-top: 20px;
    font-size: 13px;
  }
  .breadcrumb-section .breadcrumb-container * {
    font-size: inherit;
  }
  .faqs-container .faq-question {
    background: rgba(26, 58, 108, 0.03);
    padding: 16px;
    font-size: 1.1rem;
  }
}
@media (max-width: 767px) {
  .slide-item {
    height: 500px;
  }
  .slide-content h1 {
    font-size: 2.2rem;
  }
  .cta h2 {
    font-size: 2rem;
  }
  .contact-info a {
    display: block;
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .social-icons {
    display: none;
  }
  .top-bar .contact-info {
    padding: 4px;
    width: 100%;
    justify-content: space-between;
    display: flex;
    margin-bottom: 0 !important;
  }
  .top-bar .contact-info a {
    margin-bottom: 0 !important;
  }
  .top-bar .contact-info a:last-child {
    display: none;
  }
  .footer .footer-top {
    padding: 25px 15px;
    grid-template-columns: 1fr;
  }
  .section-title h2 {
    font-size: 25px;
  }
  .btn-wrapper .btn {
    margin-bottom: 8px;
  }
}/*# sourceMappingURL=style.css.map */