* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  height: 72px;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: relative;
}
/* Only for nav-hover links */
a.nav-hover {
  position: relative;
  text-decoration: none;
  color: #1f3a8a; /* normal color */
  font-weight: 500;
  padding-bottom: 4px;
  transition: color 0.3s;
}

a.nav-hover::after {
  content: "";
  position: absolute;
  left: 50% !important;
  bottom: 0;
  width: 0%;
  height: 3px;
  background: #1d5099;
  border-radius: 2px;
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

/* Hover and active state */
a.nav-hover:hover::after,
a.nav-hover.active::after {
  width: 100%;
}

/* Hover color navy blue */
a.nav-hover:hover {
  color: #0b1d4c; /* navy blue */
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 60px;
  width: 60px;
}
.logo img{
  height: 100%;
  width: 100%;
}
.logo-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #162c6b;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.logo-text {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  color: #1d5099;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #1f3a8a;
}

/* CTA BUTTON */
.cta-btn {
  padding: 10px 22px;
  background: #1f3a8a;
  color: #ffffff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background: #162c6b;
  transform: translateY(-1px);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: #0f172a;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #ffffff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 16px 24px;
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  z-index: 100;
}

.mobile-menu a {
  padding: 12px 0;
  text-decoration: none;
  font-size: 15px;
  color: #162c6b;
  font-weight: bold;
}

.mobile-cta {
  margin-top: 12px;
  background: #1f3a8a;
  color: #ffffff !important;
  text-align: center;
  padding: 12px;
  border-radius: 999px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu.active {
    display: flex;
  }
}

/* HERO SECTION */
.hero {
  background-image: url('../assets/hero/backgroun.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  /* max-height: 450px;
  min-height: 450px; */
  padding: 30px 5%;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
  height: 100%;
}

.hero-content {
  flex: 1;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.content {
  color: #162c6b;
  text-align: left;
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 20px;
}

.content h1 {
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 5px;
}

.content p {
  color: #162c6b;
  text-align: left;
  font-size: 14px;
  font-weight: 100;
  margin-top: 5px;
}

.hero-image-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  height: 100%;
  padding-top: 20px;
}

.hero-image {
  max-width: 430px;
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
}

.buttons {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.btn {
  padding: 10px 22px;
  font-size: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  height: 42px;
}

.service-btn {
  background-color: #07226b;
  color: white;
  border-radius: 30px;
}

.service-btn:hover {
  background-color: #051a52;
}

.work-btn {
  background-color: #ffffff;
  color: #07226b;
  border: 2px solid #07226b;
  border-radius: 30px;
}

.work-btn:hover {
  background-color: #07226b;
  color: white;
}

/* CAPABILITIES */
.capabilities-container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    color: #162c6b;
    align-items: center;
    font-size: larger;
    margin-top: -200px;
    width: 100%;
    position: relative;
    z-index: 10;
}
.comp-card-h2{
  text-align: center;
}
.compabillities {
  display: flex;
  justify-content: center;
  gap: 20px;
  max-width: 1500px;
  width: 100%;
  margin-top: 30px;
  flex-wrap: wrap;
}

.comp-card {
  height: 140px;
  width: 140px;
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.8rem;
  padding: 10px;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  justify-content: center;
}

.comp-card p {
  text-align: center;
}

.icon {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  font-size: 30px;
  color: #07226b;
  text-align: center;
  justify-content: center;
  display: flex;
  align-items: center;
}

/* MAIN CONTENT SECTION */
.main-section {
  padding: 0 5% 60px;
  background-color: #fff;
  margin-top: 70px;
  color: #162c6b;
}

.main-content {
  color: #07226b;
  font-size: 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1500px;
  margin: 0 auto;
}

.excelene {
  display: flex;
  gap: 20px;
}

.below-hero {
  border-radius: 10px;
  margin-top: 20px;
  width: 100%;
  max-width: 350px;
  height: auto;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.below-hero:hover {
  transform: translateY(-6px);
}

.excelene-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.excelene-list h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.excelene-list ul {
  list-style: none;
}

.excelene-list ul li {
  font-size: 0.9rem;
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.excelene-list ul li i {
  height: 30px;
  width: 30px;
  background-color: #E8F4FD;
  border-radius: 50%;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RECENT PROJECTS */
.recent-projects {
  display: flex;
  flex-direction: column;
}
.recent-proj-head{

    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;

}
.recent-title {
  color: #07226b;
  font-size: 26px;
  font-weight: 600;
  text-align: left;
}

.projects-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.project-card {
  background: transparent;
  border-radius: 14px;
  padding: 0;
  width: 100%;
  transition: transform 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.project-card img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  height: 130px;
  object-fit: cover;
}

.project-card p {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #1f2937;
  background-color: rgb(255, 255, 255);
  text-align: center;
  height: 3rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

.project-card:hover {
  transform: translateY(-6px);
}

/* STATS SECTION */
.stats-section {
  background: linear-gradient(180deg, #eaf4ff, #dceeff);
  padding: 60px 5%;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.stats-title {
  font-size: 28px;
  font-weight: 600;
  color: #0b2a6f;
  margin-bottom: 40px;
}

.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  max-width: 1500px;
  margin: 0 auto;
}

.stat-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  height: 130px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: #0b2a6f;
  margin-bottom: 8px;
}

.stat-card p {
  font-size: 14px;
  color: #2f4a8a;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.stat-card i {
  color: #2f80ed;
  font-size: 14px;
}

/* Process Area Styles */
.process-area {
  padding: 60px 5%;
  overflow: hidden;
  background-color: #f9fbfe;
}

.container {
  max-width: 1500px;
  margin: 0 auto;
}

/* Process Item Container */
.process-item-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

@media (max-width: 991px) {
  .process-item-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .process-item-container {
    grid-template-columns: 1fr;
  }
}

/* Process Item */
.process__item {
  text-align: center;
  padding: 0 20px;
  position: relative;
}

/* Process Image */
.process__image {
  max-width: 178px;
  padding: 10px;
  margin: 0 auto;
  position: relative;
  border-radius: 50%;
}

.process__image img {
  width: 100%;
}

.process__image::after {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: 1px dashed #3c72fc;
  content: "";
  border-radius: 50%;
  position: absolute;
  animation: rotate 20s linear infinite;
}

.process__image .process-number {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(90deg, #2a4ea8 -10.59%, #00060c 300.59%);
  color: #ffffff;
  font-size: 18px;
  position: absolute;
  top: 5px;
  left: 5px;
  z-index: 1;
}

/* Process Arrow */
.process__item .process-arry {
  position: absolute;
  top: 18%;
  right: -14%;
}

@media (max-width: 991px) {
  .process__item .process-arry {
    top: unset;
    right: unset;
    bottom: -110px;
    left: 40%;
  }

  .process__item .process-arry img {
    transform: rotate(90deg);
  }
}

/* Process Content */
.process__content h4 {
  font-size: 20px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #162c6b;
  margin-top: 25px;
}

.process__content p {
  line-height: 28px;
  font-size: 16px;
  color: #585858;
}

/* Section Header Styles */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* .section-header h5 {
  color: #3c72fc;
  padding-bottom: 20px;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
} */

.section-header h5 img {
  margin-right: 8px;
}

.section-header h2 {
  text-transform: capitalize;
  font-size: 33px;
  font-weight: 700;
  line-height: 48px;
  margin: 0;
  color: #162c6b;
}

/* Animations */
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes bobble {
  0% {
    transform: translateY(0) scale(1);
  }
  100% {
    transform: translateY(-20px) scale(1.1);
  }
}

.animation__rotate {
  animation: rotate 40s linear infinite;
}

.bobble__animation {
  animation: bobble 3s ease-in-out infinite alternate;
}

.mb-10 {
  margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .main-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .recent-title {
    text-align: left;
  }
  
  .projects-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stats-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .hero-image {
    max-width: 350px;
  }
  
  .content h1 {
    font-size: 24px;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 20px 5%;
  }
  .excelene{
    flex-direction: column;
  }
  
  .hero-container {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-content {
    padding-top: 0;
    text-align: center;
    align-items: center;
  }
  
  .content {
    text-align: center;
    margin-bottom: 15px;
  }
  
  .content p {
    text-align: center;
  }
  
  .hero-image-container {
    justify-content: center;
    padding-top: 10px;
  }
  
  .hero-image {
    max-width: 300px;
    max-height: 250px;
  }
  
  .capabilities-container {
    margin-top: -50px;
  }
  
  .compabillities {
    gap: 15px;
  }
  
  .comp-card {
    height: 130px;
    width: 130px;
  }
  
  .main-section {
    padding: 0 5% 40px;
    margin-top: 50px;
  }
}

@media (max-width: 768px) {
 
  
  .hero-image {
    max-width: 280px;
  }
  
  .content h1 {
    font-size: 22px;
  }
  
  .buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .btn {
    width: 200px;
  }
  
  .projects-wrapper {
    grid-template-columns: 1fr;
  }
  
  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .compabillities {
    gap: 10px;
  }
  
  .comp-card {
    height: 120px;
    width: 120px;
    padding: 8px;
    font-size: 0.75rem;
  }
  
  .section-header h2 {
    font-size: 32px;
    line-height: 40px;
  }
  
  .process-area {
    padding: 60px 5%;
  }
}

@media (max-width: 480px) {
  
  
  .content h1 {
    font-size: 20px;
  }
  
  .content p {
    font-size: 12px;
  }
  
  .hero-image {
    max-width: 250px;
  }
  
  .stats-wrapper {
    grid-template-columns: 1fr;
  }
  
  .buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn {
    width: 100%;
    max-width: 200px;
  }
  
  .section-header h2 {
    font-size: 26px;
    line-height: 34px;
  }
  
  .compabillities {
    flex-direction: column;
    align-items: center;
  }
  
  .comp-card {
    width: 160px;
    height: 140px;
  }
  
  .capabilities-container {
    margin-top: 20px;
    position: static;
  }
  
  
}
/* testinomial */

.testimonials {
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonials h2 {
  color: #162c6b;
  margin-bottom: 40px;
}

/* Steps */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}

.step {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #dbe8f6;
  color: #0b2c5d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.4s ease;
}

.step.active {
  background: #0b2c5d;
  color: #fff;
}

.line {
  width: 60px;
  height: 2px;
  background: #dbe8f6;
}

/* Slider container */
.slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 50px;
}

/* Navigation buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0b2c5d;
  color: white;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(11, 44, 93, 0.2);
}

.slider-btn:hover {
  background: #1a3f7a;
  transform: translateY(-50%) scale(1.05);
}

.slider-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.prev-btn {
  left: 0;
}

.next-btn {
  right: 0;
}

/* Cards wrapper */
.cards-wrapper {
  overflow: hidden;
  margin: 0 auto;
}

.cards {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
  width: max-content;
  height: 250px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

}

.card {
  background: #fff;
  width: 260px;
  height: 200px;
  justify-content:left;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  flex-shrink: 0;
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.card h4 {
  color: #162c6b;
  margin-bottom: 5px;
}

.role {
  font-size: 14px;
  color: #6c7a89;
  margin-bottom: 10px;
}

.text {
  font-size: 14px;
  color: #444;
  justify-content: center;
  text-align: left;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .slider-container {
    padding: 0 40px;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .slider-container {
    padding: 0 30px;
  }
  
  .card {
    width: 240px;
    padding: 20px;
  }
}

/* Tecnologies we use */
.tech-section {
    padding: 0 20px 100px 20px;
    text-align: center;
}

.tech-section h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
  color: #162c6b;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.tech-card {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 20px rgb(0 0 0 / 5%);
  padding: 5px 10px;
  border-radius: 12px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  transition: transform 0.3s ease;
}

.tech-card i {
  font-size: 28px;
  color: #1e6bd6;
  margin-bottom: 6px;
}

.tech-card span {
  font-size: 14px;
  font-weight: 500;
  color: #1f2a44;
}

.tech-card:hover {
  transform: translateY(-4px);
}



/* //blog */
/* Blog Area Styles */
.blog-area {
    overflow: hidden;
    position: relative;
}

.blog-area.pt-120 {
    padding-top: 120px;
}

.blog-area.pb-120 {
    padding-bottom: 120px;
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h5 {
    color: var(--primary-color);
    padding-bottom: 20px;
    text-transform: uppercase;
    font-weight: 500;
}

.section-header h5 img {
    margin-top: -5px;
}

.section-header h2 {
    text-transform: capitalize;
}

/* Blog Container */
.blog-area .container {
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

.blog-area .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px;
}

.blog-area .row.g-4 {
    gap: 30px;
}

/* Blog Item Grid */
.blog__item {
    box-shadow: var(--shadow);
    background-color: var(--main-bg);
    transition: var(--transition);
    overflow: hidden;
}

.blog__image {
    position: relative;
    overflow: hidden;
}

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

.blog__image .blog-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-bg);
    padding: 10px 22px;
    color: var(--white);
}

.blog__image .blog-tag h3 {
    line-height: 22px;
    font-weight: 700;
    color: var(--white);
    font-size: 18px;
    margin: 0;
}

.blog__image .blog-tag span {
    font-size: 12px;
    line-height: 22px;
    color: var(--white);
    opacity: 0.9;
}

.blog__content {
    padding: 30px;
}

.blog__content h4 {
    margin-bottom: 15px;
}

.blog__content .blog-info {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-bottom: 15px;
}

.blog__content .blog-info li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.blog__content .blog-info li a {
    color: var(--paragraph);
    font-size: 14px;
    line-height: 22px;
    transition: var(--transition);
}

.blog__content .blog-info li a:hover {
    color: var(--primary-color);
}

.blog__content .blog-info li i {
    color: var(--primary-color);
}

.read-more-btn {
    text-transform: capitalize;
    font-weight: 600;
    color: var(--paragraph);
    transition: var(--transition);
}

.read-more-btn i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more-btn:hover {
    color: var(--primary-color);
}

.read-more-btn:hover i {
    color: var(--primary-color);
    margin-left: 10px;
}

/* Hover Effects */
.blog__item:hover {
    transform: translateY(-5px);
}

.blog__item:hover .blog__image img {
    transform: scale(1.1) rotate(3deg);
    filter: brightness(70%);
}

.blog__item:hover .read-more-btn {
    color: var(--primary-color);
}

.blog__item:hover .read-more-btn i {
    color: var(--primary-color);
    margin-left: 10px;
}

/* Responsive Grid */
@media (min-width: 992px) {
    .blog-area .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (max-width: 991px) and (min-width: 768px) {
    .blog-area .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .blog-area .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Responsive Spacing */
@media (max-width: 767px) {
    .blog-area.pt-120 {
        padding-top: 60px;
    }
    
    .blog-area.pb-120 {
        padding-bottom: 60px;
    }
    
    .section-header.mb-60 {
        margin-bottom: 30px;
    }
    
    .section-header h5 {
        padding-bottom: 5px;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-60 {
    margin-bottom: 60px;
}

.me-1 {
    margin-right: 8px;
}

/* CSS Variables (Required for the blog section) */
:root {
    --primary-color: #3c72fc;
    --gradient-bg: linear-gradient(90deg, #3c72fc -10.59%, #00060c 300.59%);
    --main-bg: #ffffff;
    --paragraph: #585858;
    --white: #ffffff;
    --shadow: 0px 4px 25px 0px #0000000f;
    --transition: all 0.3s ease-in-out;
}

:root[data-theme=dark] {
    --main-bg: #151327;
    --paragraph: rgba(255, 255, 255, 0.8);
}


@media (max-width: 767px) {
    h2 {
        font-size: 30px;
        line-height: 40px;
    }
    
    h4 {
        font-size: 18px;
        line-height: 28px;
    }
}

/* Animation Classes (for WOW.js) */
.wow {
    visibility: hidden;
}

.fadeInUp {
    animation-name: fadeInUp;
}

.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Blog Section */
.blog-section {
  padding: 80px 5%;
  background-color: #f9fbfe;
}

.blog-section .container {
  max-width: 1500px;
  margin: 0 auto;
}

.blog-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-section .section-header h2 {
  font-size: 36px;
  color: #162c6b;
  margin-bottom: 15px;
  font-weight: 600;
}

.blog-section .section-subtitle {
  color: #4a5568;
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

/* Blog Card */
.blog-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Blog Image */
.blog-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.blog-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(90deg, #2a4ea8 -10.59%, #00060c 300.59%);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Blog Content */
.blog-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 13px;
  color: #718096;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-meta i {
  font-size: 12px;
}

.blog-title {
  font-size: 18px;
  color: #162c6b;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 600;
  flex-grow: 1;
}

.blog-excerpt {
  color: #4a5568;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 2;
}

/* Read More Link */
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1f3a8a;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  margin-top: 15px;
}

.read-more i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.blog-card:hover .read-more {
  color: #07226b;
}

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

/* Blog CTA */
.blog-cta {
  text-align: center;
  margin-top: 50px;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1f3a8a;
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
  border: 2px solid #1f3a8a;
}

.view-all-btn:hover {
  background: transparent;
  color: #1f3a8a;
  transform: translateY(-2px);
}

.view-all-btn i {
  transition: transform 0.3s ease;
}

.view-all-btn:hover i {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-section {
    padding: 60px 5%;
  }
  
  .blog-section .section-header h2 {
    font-size: 30px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .blog-image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .blog-section {
    padding: 50px 5%;
  }
  
  .blog-section .section-header {
    margin-bottom: 40px;
  }
  
  .blog-section .section-header h2 {
    font-size: 26px;
  }
  
  .blog-content {
    padding: 20px;
  }
  
  .blog-meta {
    flex-direction: column;
    gap: 8px;
  }
  
  .view-all-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
}

/* Footer */

/* Footer Styles */
.footer {
  background: #133C72;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 60px 5% 30px;
  font-family: 'Inter', sans-serif;
  margin-top: auto;
  color: #ffffff;
}

.footer-container {
  max-width: 1500px;
  margin: 0 auto;
}

/* Main Footer Content */
.footer-main {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

/* Contact Card */
.contact-card .card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.contact-card .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.card-title {
  font-size: 20px;
  font-weight: 600;
  color: #133C72;
  margin-bottom: 20px;
  text-align: left;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-input {
  padding: 12px 16px;
  border: 1px solid rgba(19, 60, 114, 0.2);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: #ffffff;
  transition: all 0.3s ease;
  color: #133C72;
}

.form-input:focus {
  outline: none;
  border-color: #1f3a8a;
  box-shadow: 0 0 0 3px rgba(31, 58, 138, 0.2);
}

.form-input::placeholder {
  color: #64748b;
}

.message-input {
  resize: vertical;
  min-height: 80px;
  max-height: 120px;
}

.send-btn {
  padding: 12px 24px;
  background: linear-gradient(135deg, #1f3a8a, #133C72);
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

.send-btn:hover {
  background: linear-gradient(135deg, #133C72, #0b2a5c);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.send-btn:active {
  transform: translateY(0);
}

/* Illustration Section */
.illustration-section {
  display: flex;
  align-items: center;
}

.illustration-container {
  display: flex;
  align-items: center;
  justify-self: space-between;
  gap: 50px;
}

.illustration {
     width: 70px;
    height: 250px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    margin-left: 15px;
}

.illustration-text h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.illustration-text p {
  font-size: 16px;
  color: #dbe8f6;
  font-weight: 500;
}

/* Quick Links */
.quick-links .section-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: left;
}

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

.links-list li {
  margin-bottom: 12px;
}

.links-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #dbe8f6;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.links-list a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.links-list i {
  width: 20px;
  color: #ffffff;
  font-size: 14px;
  opacity: 0.8;
}

/* Contact Info */
.contact-info .section-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: left;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-item i {
  color: #ffffff;
  font-size: 16px;
  margin-top: 2px;
  width: 20px;
  opacity: 0.9;
}

.contact-label {
    font-size: 12px;
    color: #dbe8f6;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
    text-decoration: underline; /* underline add kiya */
    text-underline-offset: 5px; /* underline thoda niche se ho */
    text-decoration-color: #4FC3F7; /* optional: underline color change */
}


.contact-value {
  font-size: 14px;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.4;
}

/* Bottom Footer Bar */
.footer-bottom {
  margin-top: 40px;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 7px;
}

.bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: -30px;
}

.brand-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo .logo-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  color: #133C72;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.footer-logo .logo-text {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
}

.tagline {
  font-size: 13px;
  color: #dbe8f6;
  font-weight: 400;
  margin-left: 10px;
}

.legal-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.legal-link {
  color: #dbe8f6;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .contact-card {
    grid-column: span 2;
  }
  
  .illustration-container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 5% 25px;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-card {
    grid-column: span 1;
  }
  
  .card-title {
    text-align: center;
  }
  
  .illustration-container {
    flex-direction: row;
    text-align: left;
  }
  
  .bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .brand-info {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .tagline {
    margin-left: 0;
  }
  
  .legal-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 30px 5% 20px;
  }
  
  .contact-card .card {
    padding: 20px;
  }
  
  .illustration-container {
    flex-direction: column;
    text-align: center;
  }
  
  .section-title {
    text-align: center;
  }
  
  .links-list a {
    justify-content: center;
  }
  
  .contact-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .divider {
    display: none;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .contact-card .card,
  .send-btn,
  .links-list a,
  .legal-link {
    transition: none;
  }
}

/* Print Styles */
@media print {
  .footer {
    border-top: 2px solid #000;
    background: #fff !important;
    color: #000 !important;
  }
  
  .send-btn,
  .legal-link {
    display: none;
  }
}
/* Services Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
  z-index: 100000000;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #1d5099;
  text-decoration: none;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dropdown-trigger:hover {
  color: #1f3a8a;
}

.dropdown-trigger i {
  transition: transform 0.3s ease;
  font-size: 10px;
  margin-left: 4px;
}

.dropdown:hover .dropdown-trigger i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-20%) translateY(-10px);
  background: #ffffff;
  border-radius: 12px;
  padding: 12px 0;
  min-width: 235px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1000;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-20%) translateY(25px);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-20%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #ffffff;
}

.dropdown-menu a {
  display: block;
  padding: 8px 20px;
  color: #000000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dropdown-menu a:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #000000;
  padding-left: 24px;
}

.dropdown-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: #1f3a8a;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.dropdown-menu a:hover::before {
  transform: scaleY(1);
}

.dropdown-menu a i {
  margin-right: 10px;
  font-size: 12px;
  color: #1f3a8a;
  transition: transform 0.3s ease;
}

.dropdown-menu a:hover i {
  transform: translateX(4px);
  color: #1f3a8a;
}

/* Add subtle animation to dropdown items */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-menu a {
  animation: slideIn 0.3s ease forwards;
  opacity: 0;
}

.dropdown-menu a:nth-child(1) { animation-delay: 0.1s; }
.dropdown-menu a:nth-child(2) { animation-delay: 0.15s; }
.dropdown-menu a:nth-child(3) { animation-delay: 0.2s; }
.dropdown-menu a:nth-child(4) { animation-delay: 0.25s; }

/* Mobile responsiveness */
@media (max-width: 900px) {
  .dropdown {
    width: 100%;
  }
  
  .dropdown-trigger {
    padding: 12px 0;
    justify-content: space-between;
    width: 100%;
  }
  
  .dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: none;
    border: none;
    border-radius: 8px;
    margin: 8px 0;
    padding: 8px 0;
    min-width: 100%;
    border-left: 3px solid #1f3a8a;
  }
  
  .dropdown-menu::before {
    display: none;
  }
  
  .dropdown-menu a {
    padding: 10px 16px;
    color: #000000;
    font-size: 14px;
  }
  
  .dropdown-menu a:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #000000;
  }
  
  .dropdown-menu a::before {
    display: none;
  }
}

/* Add smooth transition for mobile menu */
.mobile-menu .dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu .dropdown.active .dropdown-menu {
  max-height: 300px;
}