
	/* Font */
body {
  margin: 0;
  font-family: 'Nunito', sans-serif;
}

/* Header Styles */
/* Top Bar */
.top-bar {
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  color: white;
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  flex-wrap: wrap;
  border-bottom: 1px solid #eee;
}

.top-bar .social-icons a {
  width: 32px;
  height: 32px;
  font-size: 14px;
  margin-right: 10px;
}

.social-icons a {
  color: white;
  margin-right: 15px;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-info a {
  color: white;
  margin-left: 15px;
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
}

.contact-info a:hover {
  color: #ffbf00;
}

.contact-info i {
  margin-right: 5px;
}

/* Top Bar Responsive */
@media (max-width: 1024px) {
  .top-bar {
    padding: 10px 20px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    text-align: center;
    padding: 10px 15px;
    gap: 8px;
  }
  
  .social-icons {
    margin-bottom: 5px;
    display: none;
  }
  
  .social-icons a {
    margin: 0 8px;
    font-size: 16px;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }
  
  .contact-info a {
    margin: 0;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .top-bar {
    padding: 8px 10px;
  }
  
  .social-icons a {
    font-size: 14px;
    margin: 0 6px;
  }
  
  .contact-info a {
    font-size: 11px;
  }
}

/* Main Header */
header {
  background: linear-gradient(to top, #E0F2FE, #FFFFFF); /* Sky blue light → White */
  color: white;
  padding: 15px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 220px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  top: 100%;
  left: 0;
  border-radius: 8px;
  margin-top: 5px;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  padding: 12px 18px;
  display: block;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  transition: all 0.3s ease;
}

.dropdown-menu li:last-child a {
  border-bottom: none;
}

.dropdown-menu li a:hover {
  background: linear-gradient(135deg, #6B21A8, #7C3AED);
  color: white;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Mobile responsiveness for dropdown */
@media (max-width: 768px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 0;
    display: none !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown-menu li a {
    padding-left: 40px;
    font-size: 13px;
    color: white;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .dropdown-menu li a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
  }

  .dropdown:hover .dropdown-menu {
    display: none !important;
  }

  .dropdown.open .dropdown-menu {
    display: block !important;
    max-height: 500px;
  }

  .dropdown > a {
    cursor: pointer;
  }
}


.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo a {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;
  width: auto;
  border-radius: 10px;
  max-width: 100%;
}

/* Navigation */
nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0;
}

nav ul li {
  position: relative;
}

nav ul li.menu-icon-item {
  display: none;
}

nav ul li a {
  color: #000000;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 20px;
  transition: all 0.3s ease;
  border-radius: 5px;
  letter-spacing: 0.8px;
  display: block;
}

nav ul li a:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #000000;
}

nav ul li a.active {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  font-size: 32px;
  cursor: pointer;
  color: #ffffff;
  background: none;
  border: none;
  padding: 5px;
  line-height: 1;
  z-index: 1000;
}

/* Responsive */

/* Tablet */
@media (max-width: 991px) {
  nav ul li a {
    font-size: 16px;
    padding: 7px 12px;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 20px;
  }
  
  nav ul {
    gap: 3px;
  }
  
  nav ul li a {
    font-size: 14px;
    padding: 8px 15px;
  }
  
  .speak-button {
    padding: 10px 20px;
    font-size: 13px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    text-align: center;
    padding-right: 0px;
    padding-left: 0px;
  }

  .contact-info {
    margin-top: 8px;
  }
  
  .header-container {
    padding: 0 15px;
  }
  
  .logo img {
    height: 50px;
  }

  .menu-toggle {
    display: block;
  }
  
  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(120deg, #6B21A8, #4C1D95, #7C3AED);
    display: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  
  nav ul li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  nav ul li a {
    padding: 15px 20px;
    font-size: 14px;
    text-align: left;
  }
  
  nav ul li.menu-icon-item {
    display: none;
  }

  nav.show {
    display: block;
  }
  
  .speak-button {
    display: none;
  }
}

/* Small Devices */
@media (max-width: 480px) {
  .top-bar {
    padding: 8px 10px;
  }
  
  .logo img {
    height: 40px;
  }
  
  .menu-toggle {
    font-size: 28px;
  }

  nav ul li a {
    font-size: 13px;
    padding: 12px 15px;
  }
  
  .hero-title .highlight {
    font-size: 24px;
  }
  
  .hero-title {
    font-size: 14px;
  }
}

/* Global container responsive */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Speak to Us Button */
.speak-button {
 background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  color: white;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.4);
  border: none;
  cursor: pointer;
  display: inline-block;
  white-space: nowrap;
  flex-shrink: 0;
}

.speak-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.6);
  color: white;
  text-decoration: none;
}



	 
	 /* Hero Section */ 
.hero-section {
 background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  padding: 30px 0;
  font-family: 'Nunito', sans-serif;
  color: #fff;
}

.hero-title {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.4;
    font-family: 'Nunito', sans-serif;
	font-weight: 500;
}

.hero-title .highlight {
    color: #ffffff;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    font-size: 50px;
}

.services-heading {
  font-size: 20px;
  font-weight: 600;
  color: #ffc107;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.services-heading::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 4px;
  background: #ffc107;
  bottom: -6px;
  left: 0;
  border-radius: 4px;
}

.service-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
  column-count: 2;
  gap: 20px;
}

.service-list li {
  font-size: 16px;
  margin-bottom: 12px;
}

.hero-img {
  max-width: 100%;
  height: auto;
  padding-top: 5px;
  margin-left: 30px;
}
@media (max-width: 1024px) {
  .hero-section {
    padding: 40px 20px;
  }
  
  .hero-title .highlight {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 30px 15px;
  }
  
  .col-md-6 {
    width: 100%;
    padding: 10px 0;
  }

  .hero-title .highlight {
    font-size: 32px;
  }

  .hero-title {
    font-size: 16px;
    padding: 0 10px;
    margin-bottom: 20px;
  }
  
  .service-list {
    column-count: 1;
    font-size: 14px;
  }

  .hero-img {
    display: none;
  }
}

/* Fix header logo size */
.header_logo {
  height: 50px;
  padding: 10px 0;
}

/* Align phone section properly */
.num_linkz {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff !important;
  padding-top: 15px;
}

.right-phone {
  font-size: 14px;
  line-height: 1.2;
  color: #fff;
}

.top_number {
  display: block;
  font-weight: bold;
  font-size: 16px;
  color: #ffc107;
}

/* Override Bootstrap's navbar spacing */
.navbar-inverse {
  background-color: #222;
  border-color: transparent;
  min-height: 70px;
}

.navbar-nav > li > a {
  padding-top: 25px;
  padding-bottom: 25px;
  color: #fff !important;
  font-weight: 500;
}

.navbar-nav > li > a.active,
.navbar-nav > li > a:hover {
  color: #ffc107 !important;
}

/* To avoid overlapping under fixed-top nav */
.hero-section {
  margin-top: 0px; /* Pushes content below fixed nav */
}

/* -------------------------------------------------------
                     About Us 
-------------------------------------------------------- */

        .about-section {
            display: flex;
            align-items: center;
            justify-content: center;
			font-family: 'Nunito', sans-serif;
            padding: 20px 20px;
            flex-wrap: wrap;
            background: linear-gradient(to top, #E0F2FE, #FFFFFF); /* Sky blue light → White */
        }
        .about-image {
            flex: 1 1 45%;
            min-width: 300px;
            text-align: center;
        }
        .about-image img {
            width: 80%;
            border-radius: 30px;
        }
        .about-content {
            flex: 1 1 45%;
            min-width: 300px;
            padding: 20px;
        }
        .about-content h4 {
            font-size: 16px;
            color: #f83900;
            text-transform: uppercase;
            margin-bottom: 10px;
            font-weight: 700;
            position: relative;
        }
        .about-content h4::before {
            content: '';
            display: inline-block;
            width: 30px;
            height: 3px;
            background: #fa6800;
            margin-right: 10px;
            vertical-align: middle;
        }
        .about-content h2 {
            font-size: 36px;
            color: #0c0c0c;
            margin-bottom: 20px;
            font-weight: 900;
        }
        .about-content p {
            font-size: 17px;
            line-height: 1.7;
            margin-bottom: 20px;
            color: #555;
        }
        .about-content .btn {
            display: inline-block;
            padding: 15px 30px;
            font-size: 18px;
            background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
            color: #fff;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            text-decoration: none;
            font-weight: 700;
            transition: 0.3s;
        }
        .about-content .btn:hover {
            opacity: 0.9;
        }
        @media(max-width: 768px) {
            .about-section {
                flex-direction: column;
                text-align: center;
            }
            .about-content h2 {
                font-size: 28px;
				text-align: left;
            }
            .about-content p {
                font-size: 16px;
				text-align: left;
            }
        }


/* Why Choose Section */
.why-choose-section {
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
}

.why-choose-section p {
  font-size: 16px;
  color: #ffffff;
}

/* Section heading */
.section-heading {
  text-align: center;
  margin-bottom: 40px;
  color: #ffffff;
}

.section-heading .underline {
  position: relative;
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 36px;
  color: #ffffff;
}

.section-heading .underline::after {
  content: "";
  display: block;
  width: 440px;
  height: 3px;
  background-color: #38b6ff;
  margin: 8px auto 0;
}

/* Icon Circle Style */
.icon-box1 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  border: 1px solid #ffffff46;

}
.icon-box1 i {
  color: #ffffff;
  font-size: 35px;
  padding-right: 0;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .section-heading .underline {
    font-size: 32px;
  }
  .section-heading .underline::after {
    width: 300px;
  }
}

@media (max-width: 992px) {
  .section-heading .underline {
    font-size: 28px;
  }
  .section-heading .underline::after {
    width: 250px;
  }
  .why-choose-section p {
    font-size: 15px;
    color: #ffffff;
  }
}

@media (max-width: 768px) {
  .section-heading .underline {
    font-size: 24px;
  }
  .section-heading .underline::after {
    width: 180px;
  }
  .why-choose-section {
    padding: 40px 15px;
  }
  .why-choose-section p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .section-heading .underline {
    font-size: 22px;
  }
  .section-heading .underline::after {
    width: 120px;
  }
}

@media (max-width: 360px) {
  .section-heading .underline {
    font-size: 20px;
  }
  .section-heading .underline::after {
    width: 100px;
  }
}




.cta-section {
 background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  color: white;
  position: relative;
  border-radius: 50px;
  margin-top: 50px;
  margin-left: 30px;
  margin-right: 30px;
  margin-bottom: 20px;
  border: 1px solid #ffffff46;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}
/* cta */
.cta-section h2 {
  font-size: 2rem;
}

.cta-section .btn {
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 15px;
}

.cta-section .btn-light {
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  color: #ffffff;
  border: 1px solid #ffffff76;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-section .btn-danger {
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  color: #ffffff;
   border: 1px solid #ffffff76;
   box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* SEO Section */
.seo-section {
  font-family: 'Nunito', sans-serif;
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  padding: 60px 20px;
}

.seo-container {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  align-items: flex-start;
  gap: 40px;
}

.seo-left {
  flex: 1;
  min-width: 300px;
}

.seo-left h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.seo-left .intro {
  font-size: 17px;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 20px;
}

.seo-service {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.seo-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #c2e9ee;
  transition: all 0.3s ease;
}

.seo-icon img {
  width: 40px;
  height: 40px;
}

.seo-icon i {
  font-size: 28px;
  color: #ffffff;
}

.seo-text h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #ffffff;
}

.seo-text p {
  font-size: 17px;
  color: #ffffff;
  line-height: 1.6;
}

.seo-right {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.seo-right img {
  max-width: 100%;
  border-radius: 12px;
  
}

/* Responsive */
@media (max-width: 768px) {
  .seo-container {
    flex-direction: column;
  }
}

/* Price Plan */
.pricing-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to top, #E0F2FE, #FFFFFF); /* Sky blue light → White */
  font-family: 'Nunito', sans-serif;
}

.section-header .subtitle {
  color: #f83900;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0;
  color: #000000;
}

.section-header .divider {
  width: 60px;
  height: 3px;
  background: orange;
  margin: 15px auto;
}

.pricing-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background: #0a2fff2e;
  border-radius: 12px;
  width: 300px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  position: relative;
  transition: transform 0.3s;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.card-top {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  padding: 30px 0 20px;
  margin: -25px -25px 0;
  position: relative;
}

.card-top img {
  width: 40px;
  margin-bottom: 10px;
}

.card-top h3 {
  font-size: 36px;
  margin: 0;
  color: #ffffff;
}

.card-top h3 sup {
  font-size: 18px;
  vertical-align: top;
}

.card-top h3 small {
  font-size: 16px;
  color: #ffffff;
}

.pricing-card h4 {
  margin: 20px 0 10px;
  font-size: 20px;
  font-weight: 700;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.pricing-card ul li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  text-align: left;
}

.btn-buy {
  display: inline-block;
  padding: 10px 25px;
  border-radius: 5px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.orange .card-top {
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
}

.blue .card-top {
 background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  color: white;
}

.green .card-top {
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  color: white;
}

.btn-buy.orange {
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
}

.btn-buy.blue {
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
}

.btn-buy.green {
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
}

/* Responsive */
@media (max-width: 992px) {
  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
}

/* -------------------------------------------------------
                     Services 
-------------------------------------------------------- */
.gnservices-section {
  background: linear-gradient(to top, #E0F2FE, #FFFFFF); /* Sky blue light → White */
  padding: 80px 20px;
  color: white;
  font-family: 'Nunito', sans-serif;
  text-align: center;
}

.gnservices-header .section-subtitle {
  color: #f83900;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 17px;
}

.gnservices-header h2 {
  font-size: 36px;
  margin: 10px 0 15px;
  font-weight: 700;
  color:#000000
}

.gnservices-header p {
  font-size: 17px;
  color: #000000;
 
}
.gnsection-divider {
  width: 60px;
  height: 4px;
  background-color: #f26c4f;
  margin: 0 auto 40px;
  border-radius: 5px;
}

.gnservices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.gnservice-box {
 background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  border: 1px solid rgba(255, 255, 255, 0.879);
  padding: 30px 20px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.gnservice-box:hover {
  background: #FFFFFF;
  transform: translateY(-5px);
  border: 3px solid #0A2FFF;
}

.gnservice-box img {
  width: 80px;
  margin-bottom: 15px;
}

.gnservice-box:hover h3 {
  color: #000000;
}

.gnservice-box:hover p {
  color: #000000;
}

.gnservice-box h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: #ffffff;
  font-weight: 700;
}

.gnservice-box p {
  font-size: 16px;
  color: #ffffff;
}

@media (max-width: 992px) {
  .gnservices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gnservices-header p {
  font-size: 16px;
  color: #ffffff;
  text-align: left;
}
}

@media (max-width: 600px) {
  .gnservices-grid {
    grid-template-columns: 1fr;
  }
  .gnservices-header p {
  font-size: 16px;
  color: #ffffff;
  text-align: left;
}
}


/* -------------------------------------------------------
                    Benefits of Hiring an SEO 
-------------------------------------------------------- */
.seo-benefits-modern {
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  padding: 60px 20px;
  font-family: 'Nunito', sans-serif;
}

.seo-modern-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 60px;
}
.seo-modern-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}
.seo-modern-header p {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
}

.seo-modern-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: auto;
}

.modern-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 28px 24px;
  display: flex;
  gap: 20px;
  align-items: center;
  border-left: 8px solid transparent;
  transition: all 0.3s ease;
}

.modern-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
}

.highlight-bar {
  display: none; /* Replaced with border-left instead */
}

/* Icon Box */
.icon-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  flex-shrink: 0;
}

.card-info h3 {
  font-size: 1.2em;
  font-weight: 700;
  color: #1c2541;
  margin-bottom: 6px;
}
.card-info p {
  margin: 0;
  font-size: 1em;
  color: #4b5162;
  line-height: 1.6;
}

/* Unique Color Themes for each card */
.modern-card:nth-child(1) {
  border-left-color: #1b68dc;
}
.modern-card:nth-child(1) .icon-box {
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  color: #ffffff;
}
.modern-card:nth-child(2) {
  border-left-color: #1b68dc;
}
.modern-card:nth-child(2) .icon-box {
 background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  color: #ffffff;
}
.modern-card:nth-child(3) {
  border-left-color: #1b68dc;
}
.modern-card:nth-child(3) .icon-box {
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  color: #ffffff;
}
.modern-card:nth-child(4) {
  border-left-color: #1b68dc;
}
.modern-card:nth-child(4) .icon-box {
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  color: #ffffff;
}
.modern-card:nth-child(5) {
  border-left-color: #1b68dc;
}
.modern-card:nth-child(5) .icon-box {
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  color: #ffffff;
}
.modern-card:nth-child(6) {
  border-left-color: #1b68dc;
}
.modern-card:nth-child(6) .icon-box {
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  color: #ffffff;
}
.modern-card:nth-child(7) {
  border-left-color: #1b68dc;
}
.modern-card:nth-child(7) .icon-box {
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  color: #ffffff;
}
.modern-card:nth-child(8) {
  border-left-color: #1b68dc;
}
.modern-card:nth-child(8) .icon-box {
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  color: #ffffff;
}
.modern-card:nth-child(9) {
  border-left-color: #1b68dc;
}
.modern-card:nth-child(9) .icon-box {
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  color: #ffffff;
}
.modern-card:nth-child(10) {
  border-left-color: #1b68dc;
}
.modern-card:nth-child(10) .icon-box {
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  color: #ffffff;
}

/* Mobile */
@media (max-width: 860px) {
  .modern-card {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
  }
}

/* -------------------------------------------------------
                     FAQ 
-------------------------------------------------------- */

.faq-section {
  padding: 60px 20px;
  background: linear-gradient(to top, #E0F2FE, #FFFFFF); /* Sky blue light → White */
  font-family: 'Nunito', sans-serif;
}

.faq-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.faq-left {
  flex: 1 1 500px;
  padding-right: 40px;
}

.faq-left .section-tag {
  color: #f83900;
  font-weight: bold;
  border-left: 4px solid #f83900;
  padding-left: 10px;
  display: inline-block;
  margin-bottom: 10px;
  font-size: 16px;
}

.faq-left h2 {
  font-size: 32px;
  margin-bottom: 40px;
  color: #000000;
  font-weight: 700;
}

.section-heading h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #000000;
  font-weight: 700;
}

.faq-section h4 {
  font-size: 18px;
  color: #000000;
  font-weight: 600;
  margin: 0;
}

.faq-left p {
  color: #000000;
  font-size: 16px;
  margin-bottom: 30px;
}

.accordion {
  border-radius: 8px;
  overflow: hidden;
}

.accordion-item {
  background: #dce6f5;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 20px;
  border: none;
  overflow: hidden;
}

.accordion-item.active {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.accordion-header {
  padding: 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  align-items: center;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
}

.accordion-header:hover h4 {
  color: #0A2FFF;
}

.accordion-header:hover {
  background-color: transparent;
}

.accordion-body {
  padding: 0;
  max-height: 0;
  font-size: 15px;
  color: #555;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

.accordion-item.active .accordion-body {
  max-height: 500px;
  padding: 15px 0;
  opacity: 1;
}

.accordion-item .toggle {
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  color: #fff;
  font-size: 18px;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(10, 47, 255, 0.25);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  margin-left: 15px;
}

.accordion-item.active .toggle {
  transform: rotate(180deg);
  box-shadow: 0 4px 12px rgba(10, 47, 255, 0.35);
}

.accordion-item.active .toggle {
  transform: rotate(180deg);
}

.faq-right {
  flex: 1 1 400px;
  text-align: center;
}

.faq-right img {
  max-width: 100%;
  height: auto;
  margin-top: 100px;
}

/* -------------------------------------------------------
                     Service Page Header 
-------------------------------------------------------- */

.gn-service-hero {
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  padding: 120px 20px;
  color: white;
  text-align: center;
  font-family: 'Nunito', sans-serif;
}

.gn-service-content {
  max-width: 800px;
  margin: auto;
}

.gn-service-hero h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gn-service-hero p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #ffffff;
}

.gn-service-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.gn-btn {
  padding: 14px 28px;
  font-size: 16px;
  border: none;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: 0.3s ease-in-out;
}

.call-btn {
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  color: white;
  border: 1px solid #ffffff76;
}

.whatsapp-btn {
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  color: white;
  border: 1px solid #ffffff76;
}

.gn-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

/* -------------------------------------------------------
                    Digital Marketing Page 
-------------------------------------------------------- */
.gn-digitalmarketing-section {
  background: #f7fafd;
  font-family: 'Nunito', sans-serif;
  padding: 20px 0;
}

.gn-digitalmarketing-section .container {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* ✅ Ensures padding on mobile screens */
}

.gn-digitalmarketing-section .section-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  margin-top: 10px;
}

.gn-digitalmarketing-section .underline {
  width: 110px;
  height: 4px;
  background: #e94545;
  margin: 0 auto 32px auto;
  border-radius: 2px;
}

.gn-digitalmarketing-section .main-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.gn-digitalmarketing-section .image-col {
  flex: 0 0 540px;
  max-width: 540px;
}

.gn-digitalmarketing-section .image-col img {
  width: 100%;
  border-radius: 14px;
 
  display: block;
  height: auto; /* ✅ Prevent image distortion */
  margin-top: 20px;
}

.gn-digitalmarketing-section .text-col {
  flex: 1;
}

.gn-digitalmarketing-section .text-col p {
  font-size: 1.05rem;
  color: #222;
  margin-bottom: 13px;
  line-height: 1.7;
}

.gn-digitalmarketing-section .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* ✅ Slight tweak for smaller mobile phones */
  gap: 16px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.gn-digitalmarketing-section .service-item {
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  font-size: 1.08rem;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(255, 0, 0, 0.05);
  transition: background 0.3s;
}

.gn-digitalmarketing-section .service-item:hover {
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);

}

.gn-digitalmarketing-section .service-icon {
  display: inline-block;
  color: #e94545;
  font-size: 1.3rem;
  margin-right: 12px;
}

/* ✅ Tablet and small laptop */
@media (max-width: 900px) {
  .gn-digitalmarketing-section .main-content {
    flex-direction: column;
	 gap: 20px;
  }

  .gn-digitalmarketing-section .image-col {
    max-width: 100%;
    margin-bottom: 20px;
	flex: 0 0 40px;
  max-width: 340px;
 
  }
}

/* ✅ Mobile responsive */
@media (max-width: 600px) {
  .gn-digitalmarketing-section .section-title {
    font-size: 1.4rem;
  }

  .gn-digitalmarketing-section .text-col p {
    font-size: 1rem;
  }

  .gn-digitalmarketing-section .services-grid {
    grid-template-columns: 1fr;
  }

  .gn-digitalmarketing-section .container {
    padding: 0 12px;
  }
}

/* -------------------------------------------------------
                    Content Writing Table 
-------------------------------------------------------- */
.gncontent-services {
  padding: 60px 0;
  background: linear-gradient(to right, #f4f9ff, #fff);
  font-family: 'Nunito', sans-serif;
}

.gncontent-services .container {
  width: 92%;
  max-width: 1150px;
  margin: auto;
}

.gncontent-services .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #003366;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
  letter-spacing: -0.5px;
}

.gncontent-services .section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  display: block;
  margin: 12px auto 0;
  border-radius: 4px;
}

.gncontent-services .table-wrapper {
  overflow-x: auto;
  margin-bottom: 50px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  padding: 20px;
}

.gncontent-services .elevated-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 300px;
}

.gncontent-services .elevated-table td {
  padding: 11px 24px;
  border: 1px solid #2196f3;
  font-size: 1.05rem;
  color: #222;
  background-color: #fff;
  transition: background-color 0.3s ease;
  font-weight: 600;
}

.gncontent-services .elevated-table tr:nth-child(even) td {
  background-color: #f3f9ff;
}

.gncontent-services .elevated-table tr:hover td {
  background-color: #e6f2ff;
}

.gncontent-services .gncontent-description {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  line-height: 1.8;
}

.gncontent-services .gncontent-description h3 {
  font-size: 1.7rem;
  margin-bottom: 20px;
  color: #0073e6;
  text-align: center;
}

.gncontent-services .gncontent-description p {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .gncontent-services .section-title {
    font-size: 1.6rem;
  }

  .gncontent-services .elevated-table td {
    font-size: 0.95rem;
    padding: 14px 16px;
  }

  .gncontent-services .gncontent-description h3 {
    font-size: 1.4rem;
  }

  .gncontent-services .gncontent-description p {
    font-size: 1rem;
  }
}

/* -------------------------------------------------------
                    Web Design Page 
-------------------------------------------------------- */
 .process-section {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  font-family: 'Nunito', sans-serif;
}

.process-title {
  text-align: center;
}

.process-title h2 {
  font-size: 32px;
  font-weight: 700;
}

.process-title p {
  font-size: 18px;
  color: #555;
  margin-top: 10px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  background: #f1f1f1;
  margin-top: 30px;
  border-radius: 6px;
  overflow-x: auto;
}

.step {
  
  flex: 1 1 14.28%;
  text-align: center;
  padding: 15px 10px;
  color: #0A2FFF;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  min-width: 120px;
  box-sizing: border-box;
}

.step i {
  font-size: 22px;
  margin-bottom: 8px;
  display: block;
}

.step.active {
  color: #ffffff;
  font-weight: 700;
  border-top: 3px solid #ffffff;
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);

}

.step-content {
  border: 1px solid #ddd;
  padding: 30px 20px;
  margin-top: -1px;
  background: #fff;
}

.step-content h3 {
  font-size: 26px;
  margin-bottom: 15px;
}

.step-content p {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

/* Tablet view adjustments */
@media (max-width: 992px) {
  .step {
    flex: 1 1 33.33%;
  }

  .process-title h2 {
    font-size: 28px;
  }

  .process-title p {
    font-size: 16px;
  }

  .step-content h3 {
    font-size: 22px;
  }

  .step-content p {
    font-size: 15px;
  }
}

/* Hide mobile icon nav on desktop */
@media (min-width: 769px) {
  .mobile-icon-nav {
    display: none !important;
  }
}

/* Hide original step list on mobile */
@media (max-width: 768px) {
  .process-steps {
    display: none;
  }

  .mobile-icon-nav {
    display: flex;
    justify-content: space-between;
    overflow-x: auto;
    padding: 10px;
    gap: 10px;
    margin-bottom: 20px;
  }

  .icon-nav-item {
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    background: #f1f1f1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #555;
    border: 2px solid transparent;
    transition: 0.3s;
  }

  .icon-nav-item.active {
    border-color: #2196F3;
    background: #fff;
    color: #2196F3;
  }

  .icon-nav-item i {
    pointer-events: none;
  }
  

  /* Optional: custom scrollbar */
  .mobile-icon-nav::-webkit-scrollbar {
    height: 4px;
  }

  .mobile-icon-nav::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
  }
}


@media (max-width: 480px) {
  .step {
    flex: 1 1 100%;
    padding: 10px 5px;
  }

  .step-content h3 {
    font-size: 20px;
  }

  .step-content p {
    font-size: 14px;
  }

  .process-title h2 {
    font-size: 20px;
  }

  .process-title p {
    font-size: 14px;
  }
}

/* -------------------------------------------------------
                    Aboutus Page 
-------------------------------------------------------- */

.vision-mission-wrapper {
    background: linear-gradient(to right, #f5faff, #fff9f3);
    width: 100%;
    padding: 0px 20px;
    color: #222;
  }

  .vision-mission-section {
    max-width: 1200px;
    margin: 0 auto;
  }


.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
 
}

.row.reverse {
  flex-direction: row-reverse;
}

.column {
  flex: 1;
  padding: 20px;
}

.section-text {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 25px;
}

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

.list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.list li::before {
  content: "🎯";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
}

.image-box img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .row,
  .row.reverse {
    flex-direction: column;
  }
}

/* -------------------------------------------------------
                    Contactus Page 
-------------------------------------------------------- */
  
   .contact-container {
      display: flex;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: 0 auto;
      background: linear-gradient(to right, #f5faff, #fff9f3);
      border-radius: 12px;
      box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
      overflow: hidden;
    }

    .contact-left {
      flex: 1 1 40%;
      padding: 40px 30px;
      
	  
    }

    .info-box {
      display: flex;
      align-items: center;
      margin-bottom: 30px;
    }

    .info-box i {
      width: 40px;
      height: 40px;
      margin-right: 20px;
      font-size: 20px;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .info-text strong {
      font-size: 18px;
      display: block;
      color: #000;
    }

    .info-text span {
      font-size: 15px;
      color: #666;
    }

    .social-icons1 {
      margin-top: 40px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 15px;
    }

    .social-icons1 h4 {
      font-size: 20px;
      margin-bottom: 0;
      margin-right: 15px;
      color: #333;
      width: 100%;
    }

    .social-icons1 a {
      font-size: 18px;
      color: #fff;
      text-decoration: none;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
      box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
    }

    .social-icons1 a:hover {
      background: linear-gradient(135deg, #3b82f6, #60a5fa);
      transform: translateY(-4px) scale(1.05);
      box-shadow: 0 8px 20px rgba(30, 64, 175, 0.5);
    }

    .contact-right {
      flex: 1 1 60%;
      padding: 40px 30px;
      background: linear-gradient(to right, #f5faff, #fff9f3);
    }

    .contact-right h2 {
      font-size: 28px;
      color: #222;
      margin-bottom: 30px;
      text-transform: uppercase;
    }

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

    .contact-form input,
    .contact-form textarea {
      padding: 14px 18px;
      font-size: 15px;
      border: 1px solid #444;
      border-radius: 12px;
      resize: none;
    }

    .contact-form textarea {
      height: 160px;
    }
    .contact-form select {
  padding: 14px 18px;
  font-size: 15px;
  border: 1px solid #444;
  border-radius: 12px;
  background-color: linear-gradient(to right, #f5faff, #fff9f3);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

    .submit-button {
      background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);

      color: #fff;
      padding: 14px;
      font-size: 16px;
      font-weight: bold;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .submit-button:hover {
      background: #b00000;
    }

    @media (max-width: 768px) {
      .contact-container {
        flex-direction: column;
      }

      .contact-left,
      .contact-right {
        flex: 1 1 100%;
        

      }
    }

/* footer */

.ds-footer {
  font-family: 'Nunito', sans-serif;
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  color: #fff;
  padding: 60px 20px 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
  justify-content: space-between;
  gap: 30px;
}

.footer-box {
  flex: 1 1 300px;
}

.footer-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.footer-box .dot {
  width: 12px;
  height: 12px;
  background: rgb(255, 255, 255);
  border-radius: 50%;
  margin-right: 10px;
}

.footer-box p {
  line-height: 1.8;
  font-size: 16px;
  color: #f0f0f0;
}


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

.footer-links li {
  margin: 10px 0;
}

.footer-links li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links li a:hover {
  color: rgb(255, 255, 255);
}

.footer-links li i {
  color: rgb(255, 255, 255);
  margin-right: 8px;
}

.social-icons {
  
  display: flex;
  gap: 12px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
 background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
 box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
 text-decoration: none;
}

.social-icons a:hover {
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.5);
}

.footer-bottom {
  border-top: 1px solid #ffffff;
  text-align: center;
  padding: 15px 0 0;
  margin-top: 40px;
  font-size: 16px;
  color: #fffdfd;
  
}

.footer-bottom p {
color: #fffdfd;
font-size: 16px;  

}

.footer-bottom a {
color: #fffdfd;
text-decoration: none;

}

.services-section {
  padding: 30px;
  background: #143642;
  color: #fff;
}

p {
  font-family: 'Nunito', sans-serif;
  font-size: 15px; /* adjust as needed */
  line-height: 1.6;
  color: #080808; /* or your preferred color */
}

.section-title1 {
  color: #000000;
  font-size: 36px;
  font-weight: 700;
  border-bottom: 3px solid #38b6ff;
  display: inline-block;
  padding-bottom: 2px;
  margin-bottom: 20px;
  font-family: 'Nunito', sans-serif;
  margin-top: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  padding: 15px;
  border-radius: 8px;
  border : 1px solid #ffffff;
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.mission-icon {
  background: #ffffff;
  color: #0A2FFF;
}

.vision-icon {
  background: #f2f0ff;
  color: #0A2FFF;
}

.value-icon {
  background: #ffffff;
  color: #0A2FFF;
}

.goal-icon {
  background: #ffffff;
  color: #0A2FFF;
}

.service-title {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.mission-title { color: #ffffff; }
.vision-title { color: #ffffff; }
.value-title { color: #ffffff; }
.goal-title { color: #ffffff; }

.service-content p {
  margin: 2px 0 0 0;
  font-size: 14px;
  color: #ffffff;
  
}

/* -------------------------------------------------------
   Service Page Extra Section 
-------------------------------------------------------- */
 .grownotch-sections {
  
  margin: auto;
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);

}

/* Section Container */
.grownotch-section {
  
  padding: 60px 20px;
  margin: auto;
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

/* Headings */
.grownotch-section h2 {
  font-size: 28px;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: left;
}

/* Paragraph */
.grownotch-section p {
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 30px;
  text-align: left;
}

/* Highlight Box */
.grownotch-highlight {
  background: rgb(2 2 2 / 16%);
  border-left: 4px solid #00d4ff;
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 10px;
}

/* Comparison Container */
.grownotch-comparison {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

/* Comparison Box */
.grownotch-box {
  flex: 1 1 300px;
  max-width: 100%;
  background: linear-gradient(120deg, #0A2FFF, #001A72, #0A2FFF);
  border-radius: 10px;
  padding: 20px;
  border-top: 3px solid #00d4ff;
  transition: 0.3s;
  margin-bottom: 20px;
  border: 1px solid #ffffff;
}

.grownotch-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

.grownotch-box h3 {
  color: #ffffff;
  margin-bottom: 10px;
  font-size: 20px;
}

.grownotch-box p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
}


/* Responsive Media Queries */
@media (max-width: 992px) {
  .grownotch-section {
    padding: 40px 15px;
  }

  .grownotch-section h2 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .grownotch-section h2 {
    font-size: 22px;
  }

  .grownotch-comparison {
    flex-direction: column;
    gap: 20px;
  }

  .grownotch-box {
    width: 100%;
	flex: 1 1 200px;
  }

  .grownotch-section p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .grownotch-section {
    padding: 30px 10px;
  }

  .grownotch-section h2 {
    font-size: 20px;
  }

  .grownotch-box h3 {
    font-size: 18px;
  }

  .grownotch-box p {
    font-size: 14px;
  }
}

/* why choose */

  

    .business-box {
      display: flex;
      flex-wrap: wrap;
      border: 1px solid #000000;
      border-radius: 16px;
      padding: 24px;
      max-width: 800px;
      margin: auto;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .business-left {
      flex: 1 1 300px;
      background-color: #9f9999cc;
      padding: 30px;
      border-radius: 12px;
      margin-right: 20px;
      text-align: center;
    }

    .business-left h2 {
      font-size: 22px;
      margin-bottom: 10px;
	  font-family: 'Nunito', sans-serif;
    }

    .business-left p {
      color: #666;
      margin-bottom: 20px;
    }

    .learn-btn {
      background-color: #d46600;
      color: #fff;
      border: none;
      padding: 12px 24px;
      font-size: 16px;
      border-radius: 30px;
      cursor: pointer;
	  font-family: 'Nunito', sans-serif;
    }
.learn-btn a {
    color: rgb(255 255 255);
	text-decoration: none;
	
	}

    .business-right {
      flex: 1 1 300px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .feature-list {
      list-style: none;
      padding: 0;
      margin: 0 0 20px 0;
    }

    .feature-list li {
      margin-bottom: 12px;
      font-size: 16px;
      color: #444;
    }

    .feature-list li::before {
      content: "↗";
      color: #d46600;
      margin-right: 10px;
    }

    .chat-box {
      display: flex;
      align-items: center;
      margin-top: auto;
    }

    .chat-icon-wrap {
      border: 1px solid #d46600;
      border-radius: 50%;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #d46600;
      font-size: 20px;
      margin-right: 10px;
    }

    .chat-text h3 {
      margin: 0;
      font-size: 18px;
      color: #000;
    }

    .chat-text span {
      color: #666;
      font-size: 14px;
    }

	.img-fluid1 {
    max-width: 90%;
    height: auto;
    border-radius: var(--bs-border-radius) !important;

}

.text-muted {
    --bs-text-opacity: 1;
    color: rgb(255, 255, 255) !important;
	}
	
	.text-muted1 {
    --bs-text-opacity: 1;
    color: rgb(0 0 0) !important;
	}
	
	h5 {
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff; /* white or change as needed */
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase; /* optional */
}

/* Blog Grid Styles */
.blogs-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: calc(100vh - 200px);
}

.blogs-section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  color: #020f46;
  margin-bottom: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 20px;
}

.blogs-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #0435b3, #ffbf00);
  border-radius: 2px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.blog-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.blog-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blog-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.blog-date {
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

.blog-category {
  display: inline-block;
  background: linear-gradient(135deg, #0435b3, #020f46);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-title {
  font-size: 20px;
  font-weight: 700;
  color: #020f46;
  margin-bottom: 12px;
  line-height: 1.4;
  min-height: 56px;
}

.blog-title:hover {
  color: #0435b3;
}

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

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 15px;
  gap: 15px;
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #666;
}

.blog-author-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #0435b3, #020f46);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.read-more-btn {
  background: linear-gradient(135deg, #0435b3, #020f46);
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  white-space: nowrap;
}

.read-more-btn:hover {
  background: linear-gradient(135deg, #764ba2, #667eea);
  color: white;
  text-decoration: none;
  transform: translateX(4px);
}

.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination {
  display: flex;
  list-style: none;
  padding: 0;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-item {
  margin: 0;
}

.page-link {
  color: #0435b3;
  border: 1px solid #ddd;
  padding: 8px 12px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.page-link:hover {
  background: linear-gradient(135deg, #0435b3, #020f46);
  color: white;
  border-color: #0435b3;
}

.page-item.active .page-link {
  background: linear-gradient(135deg, #0435b3, #020f46);
  color: white;
  border-color: #0435b3;
}

.no-blogs {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}

.no-blogs p {
  font-size: 18px;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blogs-section {
    padding: 40px 15px;
  }
  
  .blogs-section-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .blog-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .read-more-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .blogs-section-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .blog-card-image {
    height: 180px;
  }
  
  .blog-title {
    font-size: 18px;
    min-height: auto;
  }
  
  .blog-excerpt {
    font-size: 13px;
  }
}

/* Blog Detail Page Styles */
.blog-detail-container {
  padding: 40px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: calc(100vh - 200px);
}

.blog-detail-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.back-to-blog {
  display: inline-block;
  margin-bottom: 30px;
  color: #0435b3;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.back-to-blog:hover {
  color: #764ba2;
  margin-left: -5px;
}

.blog-detail-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
}

.article-column {
  background: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.blog-header {
  margin-bottom: 40px;
}

.blog-detail-meta {
  display: flex;
  gap: 25px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #666;
}

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

.blog-detail-meta i {
  color: #0435b3;
  font-size: 16px;
}

.blog-detail-title {
  font-size: 42px;
  font-weight: 700;
  color: #020f46;
  margin: 20px 0;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.blog-detail-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.blog-detail-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 40px;
}

.blog-detail-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #020f46;
  margin: 40px 0 20px 0;
  padding-bottom: 15px;
  border-bottom: 3px solid #0435b3;
}

.blog-detail-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0435b3;
  margin: 30px 0 15px 0;
}

.blog-detail-content p {
  margin-bottom: 20px;
}

.blog-detail-content ul,
.blog-detail-content ol {
  margin: 20px 0 20px 30px;
  line-height: 1.8;
}

.blog-detail-content li {
  margin-bottom: 10px;
}

.blog-detail-content strong {
  color: #020f46;
  font-weight: 700;
}

.blog-detail-content a {
  color: #0435b3;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.blog-detail-content a:hover {
  color: #764ba2;
  text-decoration: underline;
}

.blog-detail-content blockquote {
  border-left: 5px solid #0435b3;
  padding: 20px;
  margin: 30px 0;
  background: #f0f4ff;
  border-radius: 8px;
  font-style: italic;
  color: #555;
}

.blog-author-box {
  display: flex;
  gap: 20px;
  padding: 30px;
  background: linear-gradient(135deg, #f0f4ff 0%, #fff 100%);
  border-radius: 12px;
  border-left: 5px solid #0435b3;
  margin: 40px 0;
}

.author-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0435b3, #020f46);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  flex-shrink: 0;
}

.author-info h4 {
  font-size: 18px;
  color: #020f46;
  margin: 0 0 5px 0;
  font-weight: 700;
}

.author-info p {
  color: #666;
  font-size: 14px;
  margin: 0;
}

.related-posts {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid #eee;
}

.related-posts-title {
  font-size: 28px;
  font-weight: 700;
  color: #020f46;
  margin-bottom: 30px;
  text-align: center;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.related-post-card {
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.related-post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.related-post-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.related-post-content {
  padding: 20px;
}

.related-post-title {
  font-size: 16px;
  font-weight: 700;
  color: #020f46;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.related-post-link {
  color: #0435b3;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.related-post-link:hover {
  color: #764ba2;
  transform: translateX(4px);
}

/* Sidebar Styles */
.sidebar-column {
  position: sticky;
  top: 20px;
  height: fit-content;
}

.contact-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #0435b3;
}

.contact-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #020f46;
  margin: 0 0 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg, #0435b3, #764ba2);
  border-radius: 50%;
}

.contact-card .small {
  color: #666;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #020f46;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0435b3;
  box-shadow: 0 0 0 3px rgba(4, 53, 179, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.btn-primary-blue {
  background: linear-gradient(135deg, #0435b3, #020f46);
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-primary-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(4, 53, 179, 0.3);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  border: none;
}

.btn-whatsapp:hover {
  background: #1fb254;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.quick-links {
  display: flex;
  
  gap: 40px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.quick-link {
  color: #0435b3;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quick-link:hover {
  color: #764ba2;
  margin-left: 5px;
}

.quick-link i {
  font-size: 16px;
}

/* Responsive Design for Blog Detail */
@media (max-width: 1024px) {
  .blog-detail-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .sidebar-column {
    position: static;
  }
}

@media (max-width: 768px) {
  .blog-detail-container {
    padding: 20px 15px;
  }
  
  .article-column {
    padding: 25px;
  }
  
  .blog-detail-title {
    font-size: 28px;
    margin: 15px 0;
  }
  
  .blog-detail-image {
    height: 280px;
    margin-bottom: 25px;
  }
  
  .blog-detail-content {
    font-size: 15px;
    margin-bottom: 30px;
  }
  
  .blog-detail-content h2 {
    font-size: 22px;
    margin: 30px 0 15px 0;
  }
  
  .blog-detail-content h3 {
    font-size: 18px;
    margin: 20px 0 12px 0;
  }
  
  .blog-author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  
  .author-info h4 {
    margin-top: 10px;
  }
  
  .contact-card {
    padding: 20px;
  }
  
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-detail-meta {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .blog-detail-title {
    font-size: 22px;
    margin: 10px 0;
  }
  
  .blog-detail-meta {
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
  }
  
  .blog-detail-image {
    height: 220px;
    margin-bottom: 20px;
  }
  
  .blog-detail-content {
    font-size: 14px;
  }
  
  .contact-actions {
    flex-direction: column;
  }
  
  .btn-primary-blue,
  .btn-whatsapp {
    width: 100%;
  }
}

/* ========================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ======================================== */

/* Footer Responsive */
@media (max-width: 1024px) {
  .ds-footer {
    padding: 40px 20px 20px;
  }
  
  .footer-container {
    gap: 25px;
  }
  
  .footer-box {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  .ds-footer {
    padding: 30px 15px 15px;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-box {
    flex: 1 1 100%;
    text-align: center;
  }
  
  .footer-box h3 {
    font-size: 18px;
    justify-content: center;
  }
  
  .footer-box p {
    font-size: 14px;
  }
  
  .footer-links {
    text-align: center;
  }
  
  .social-icons {
    text-align: center;
  }
  
  .footer-bottom {
    font-size: 14px;
    padding: 12px 0 0;
    margin-top: 30px;
  }
  
  .footer-bottom p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .ds-footer {
    padding: 20px 10px 10px;
  }
  
  .footer-box h3 {
    font-size: 16px;
  }
  
  .footer-box p {
    font-size: 13px;
  }
  
  .footer-links li a {
    font-size: 13px;
  }
  
  .footer-bottom {
    font-size: 12px;
  }
  
  .footer-bottom p {
    font-size: 12px;
  }
}

/* Service Hero Section Responsive */
@media (max-width: 1024px) {
  .gn-service-hero {
    padding: 80px 20px;
  }
  
  .gn-service-hero h1 {
    font-size: 28px;
  }
  
  .gn-service-hero p {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .gn-service-hero {
    padding: 60px 15px;
  }
  
  .gn-service-hero h1 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .gn-service-hero p {
    font-size: 15px;
    margin-bottom: 30px;
  }
  
  .gn-service-buttons {
    gap: 15px;
  }
  
  .gn-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .gn-service-hero {
    padding: 40px 10px;
  }
  
  .gn-service-hero h1 {
    font-size: 20px;
  }
  
  .gn-service-hero p {
    font-size: 14px;
    margin-bottom: 25px;
  }
  
  .gn-service-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .gn-btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 13px;
  }
}

/* Services Section Responsive */
@media (max-width: 768px) {
  .services-section {
    padding: 20px 15px;
  }
  
  .section-title1 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 15px 10px;
  }
  
  .section-title1 {
    font-size: 24px;
  }
}

/* Global Image Responsive */
@media (max-width: 768px) {
  img {
    max-width: 100%;
    height: auto;
  }
}

/* Buttons Responsive */
@media (max-width: 480px) {
  button:not(.menu-toggle),
  .btn,
  input[type="submit"],
  input[type="button"] {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* Form Elements Responsive */
@media (max-width: 768px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  textarea,
  select {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  textarea,
  select {
    padding: 8px 10px;
    font-size: 13px;
  }
}

/* Typography Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 28px !important;
  }
  
  h2 {
    font-size: 24px !important;
  }
  
  h3 {
    font-size: 20px !important;
  }
  
  h4 {
    font-size: 18px !important;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 24px !important;
  }
  
  h2 {
    font-size: 20px !important;
  }
  
  h3 {
    font-size: 18px !important;
  }
  
  h4 {
    font-size: 16px !important;
  }
}

/* Overflow and Scroll Prevention */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
  
  .row {
    margin-left: 0;
    margin-right: 0;
  }
  
  [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Recent Blog Posts Styles */
.recent-blog-posts {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.recent-posts-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1e3a5f;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #667eea;
}

.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.recent-post-item {
  display: flex;
  gap: 15px;
  background: white;
  padding: 15px;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.recent-post-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.recent-post-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.recent-post-meta {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recent-post-meta h4 {
  margin: 0 0 8px 0;
  font-size: 0.95rem;
  line-height: 1.3;
}

.recent-post-meta h4 a {
  color: #1e3a5f;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.recent-post-meta h4 a:hover {
  color: #667eea;
}

.post-date {
  margin: 0;
  font-size: 0.8rem;
  color: #999;
}

@media (max-width: 768px) {
  .recent-blog-posts {
    padding: 20px;
  }
  
  .recent-post-item {
    padding: 12px;
  }
  
  .recent-post-thumb {
    width: 70px;
    height: 70px;
  }
}