*{
    margin: 0;
    padding: 0;
    font-family:poppins, sans-serif ;
   
}

.white{
  color: white !important;;
}
.green{
  color: green!important   ;
}
.red{
  color: red;
}
.black{
  color: #000;
}
.blue{
  color: blue;
}
.purple{
  color: purple;
}
.blue1{
  color: rgb(57, 57, 160);;
}
.orange{
  color:orange
}
.bg_orange{
  background-color: orange;
}
.bg_blue1{
  background-color: #315094;
}
.bg_blue2{
  background-color: #0077B5;
}
.bg_purple{
  background-color: #E1306C;
}
.bg_green{
  background-color: rgb(89, 185, 89);
}
.bg_white{
  /* background-color: white; */
  border-radius: 50px;
  padding: 15px;
  margin: auto;
  width: 100px;
}
.card-title{
  color: #000;
  font-weight: bold;
}
.card-body{
  color: #000;
}
.bg_blue3{
  background-color: rgb(34, 34, 145);
}
.btn-close {
  filter: invert(1);
}
.margin{
  margin: 0px!important;
  padding: 0px!important;
}
.modal-backdrop{
  z-index: 999!important;
}
a{
  text-decoration: none !important;
}
a:hover {
  color: #1400a8;          /* Hover color */
  text-decoration: underline; /* या border-bottom भी use कर सकते हो */
  transform: scale(1.05);   /* हल्का zoom */
}
.social_icons {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1000;
}
.social_icons a {
  display: block;
  margin: 10px 0;
  padding: 10px;
  color: white;
  text-align: center;
  width: 50px;
  transition: all 0.3s ease;
}
.social_icons a:hover {
  transform: scale(1.1);
}
.facebook { background-color: #3b5998; }
.instagram { background-color: #E1306C; }
.whatsapp { background-color: rgb(89, 185, 89); }
.linkedin { background-color: #0077B5; }
/*-----topBar------*/

.topbar {
  background-color: rgb(48,29,108);
  cursor: pointer;
  padding: 8px 0; /* Reduced padding */
  color: white;
  font-size: 14px; 
  position: fixed;
  top: 0;
  left: 0;
  z-index:1050;
}
.topbar .info-container {
  display: flex;
  margin-top: 10px;
  margin-left: 30px;
  padding-top:10px;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  height: 40px;
  border:1px solid white;
  border-radius: 5px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  font-weight: 600;
}

.topbar .info-container:hover {
  background: linear-gradient(45deg, #ff0000, #ff7f00, #ffff00);
  color:white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.topbar .info-container i {
  margin-right: 8px;
  margin-top:4px
}

.topbar .social-icons2 a:hover {
  color:white;
  background: linear-gradient(45deg, #ff0000, #ff7f00, #ffff00);
  border-radius: 50%;
  transform: scale(1.2);
}
.social-icons2 {
  text-align: center;
}
.social-icons2 a {
  display: inline-block;
  font-size: 20px;
  margin-left: 10px;
  width: 40px;
  height: 40px;
  line-height:40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.3s ease;
}
.btn-warning {
  background: linear-gradient(45deg, #ff7f00, #ffae00);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn-warning:hover {
  background: linear-gradient(45deg, #ffae00, #ff7f00);
  transform: scale(1.05);
}
.href{
  text-decoration: none;
  color: white;
}
@media (max-width:997px) {
  .hide{
    display: none;
  }
  
}
.facebook { background-color: #3b5998; }
.instagram { background-color: #E1306C; }
.whatsapp { background-color: rgb(89, 185, 89); }
.linkedin { background-color: #0077B5; }


/* Overall Modal */
#enquiryModal .modal-dialog {
  max-width: 450px; /* thoda chota modal */
}
#enquiryModal .modal-content {
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  border: none;
  animation: zoomIn 0.3s ease;
}

/* Modal Header */
#enquiryModal .modal-header {
  background: linear-gradient(135deg, #6a11cb, #2575fc); /* Purple to Blue */
  color: #fff;
  border-bottom: none;
  padding: 15px 20px;
}
#enquiryModal .modal-title {
  font-size: 18px;
  font-weight: 600;
}
#enquiryModal .btn-close {
  filter: invert(1);
}

/* Input Fields */
#enquiryModal .form-control {
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: all 0.3s;
  padding: 8px 10px;
  font-size: 14px;
}
#enquiryModal .form-control:focus {
  border-color: #6a11cb;
  box-shadow: 0 0 6px rgba(106,17,203,0.4);
}

/* Radio Buttons */
#enquiryModal .form-check-input {
  accent-color: #2575fc; /* Blue accent */
  transform: scale(1.05);
  margin-top: 5px;
}
#enquiryModal .form-check-label {
  margin-left: 4px;
  font-weight: 500;
  font-size: 14px;
  color: #000;
}

/* Submit Button */
#enquiryModal .btn-primary {
  background: linear-gradient(45deg, #2575fc, #6a11cb); /* Blue to Purple */
  border: none;
  padding: 10px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 20px;
  transition: 0.3s;
}
#enquiryModal .btn-primary:hover {
  background: linear-gradient(45deg, #6a11cb, #2575fc);
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Animation */
@keyframes zoomIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.navbar-toggler{
  margin-right: 20px!important;
  border: white!important;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}
/*------Navbar------*/
#header {
    height: auto; /* Ensures the header expands to fit content */
    min-height: 55px; /* Add a minimum height for better visibility */
    padding: 0;
    transition: all 0.5s;
    z-index: 997;
    background-color: rgb(48, 29, 108);
    position: fixed; 
    width: 100%;
    top: 0; 
}


#header .navbar-brand img.img {
    margin-left: 20px;
    height: 80px; /* Set a specific height for the logo image */
    width: auto;
    display: inline-block; /* Essential for proper display */
}
  #header .logo img {
  margin-left: 10px; /* Reduced margin for smaller screens */
  max-height: 40px; /* Adjust as needed */
  width: auto;
}
  
  #header.header-scrolled {
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  }
  
  #header .logo h1 {
    font-size: 28px;
    margin: 0;
  
    line-height: 1;
    font-weight: 700;
    letter-spacing: 1px;
  }
  
  #header .logo h1 a, #header .logo h1 a:hover {
    color: #354144;
    text-decoration: none;
  }
  
  #header .logo h1 a span, #header .logo h1 a:hover span {
    color: #01b1d7;
  }
  @media (min-width: 992px) { /* Applies to large screens and up (where topbar is visible) */
    #header {
        position: fixed;
        top: 0px; /* Adjust this value (TopBar height + border) */
        width: 100%;
        /* Ensure the desktop logo space is cleared if the logo element remains */
    }
    .topbar .logo a img {
        height: 50px; /* Ensure logo in topbar has a height */
    }
}
  
  /*---Desktop Nav---*/
  .nav-menu, .nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .img{
    margin-left: 20px;
  }
  .nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    float: left;
  }
  .nav-menu > ul {
  display: flex;
  justify-content: space-around;  /* Spread menu items evenly */
  align-items: left;
  gap: 5px;   
  width: 100%;  /* Take full header width */
}


  /* .nav-menu a {
display: block;
  padding: 15px 20px; 
  font-size: 16px; 
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.5px; 
  text-transform: uppercase;
  transition: all 0.3s ease;

} */
.nav-menu a {
  position: relative;
  display:block;
  color: white!important; 
  font-size: 15px;            
  font-weight: 600;
  padding: 15px 6px;
  text-decoration: none;
  transition: color 0.3s ease;
}
/* * /Line under each link */ */
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: rgb(236, 194, blue); 
  transition: width 0.3s ease-in-out;
}  


  .nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    color: #fff;
    text-decoration: none !important;
  }
  
  @media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
      left: -90%;
    }
    .nav-menu .drop-down .drop-down:hover > ul {
      left: -100%;
    }
    .nav-menu .drop-down .drop-down > a:after {
      content: "\ea9d";
    }
  }

/* Dropdown Menu */
.nav-menu .drop-down ul {
  position: absolute;
  left: 0;
  top: 100%;
  background: linear-gradient(135deg, #0d47a1, #1976d2); /* Blue gradient */
  min-width: 230px;
  display: none;
  z-index: 999;
  border-radius: 10px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  animation: dropdownFade 0.3s ease;
}

/* Dropdown list items */
.nav-menu .drop-down ul li {
  display: block;
}

.nav-menu .drop-down ul li a {
  padding: 12px 18px;
  color: #f5f5f5;
  font-weight: 500;
  transition: all 0.3s ease;
}

.nav-menu .drop-down ul li a:hover {
  background: #ff7b00; /* Golden highlight */
  color: #0d47a1; /* Blue text */
  padding-left: 25px;
  font-weight: 600;
}

/* Show dropdown on hover */
.nav-menu .drop-down:hover > ul {
  display: block;
  animation: dropdownFade 0.3s ease;
}

/* Animation */
@keyframes dropdownFade {
  0% { opacity: 0; transform: translateY(15px); }
  100% { opacity: 1; transform: translateY(0); }
}

  /* Navbar Links */
.nav-menu ul li a, 
.nav-menu .nav-link {
  position: relative;
  display: inline-block;
  color: #fff; /* text color */
  text-decoration: none;
  padding: 5px 0px;
  transition: color 0.3s ease;
}

/* Before Line (hidden by default) */
.nav-menu ul li a::after,
.nav-menu .nav-link::after {
  content: "";
 
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;

  transition: width 0.3s ease;
}

/* On Hover show line */


/* Optional: change text color on hover */
.nav-menu ul li a:hover,
.nav-menu .nav-link:hover {
  color: #ffcc00;
}

  /*-----Mobile Nav-----*/
  .mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 10px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
  }
  
  .mobile-nav-toggle i {
    color: #354144;
  }
  
  .mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
  }
  
  .mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .mobile-nav a {
    display: block;
    position: relative;
    color: #354144;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
  }
  
  .mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: #01b1d7;
    text-decoration: none;
  }
  
  .mobile-nav .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
  }
  
  .mobile-nav .active.drop-down > a:after {
    content: "\eaa1";
  }
  
  .mobile-nav .drop-down > a {
    padding-right: 35px;
  }
  
  .mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
  }
  
  .mobile-nav .drop-down li {
    padding-left: 20px;
  }
  
  .mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(31, 38, 39, 0.6);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
  }
  
  .mobile-nav-active {
    overflow: hidden;
  }
  
  .mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
  }


    .badge-new {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 7px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 8px;
  background: linear-gradient(45deg,#ff9800,#ff6a00);
  color:#111;
  box-shadow: 0 2px 8px rgba(255,106,0,0.25);
  animation: badgeBlink 1.2s linear infinite;
  transform-origin: center;
}

/* blink by changing opacity */
@keyframes badgeBlink {
  0%   { opacity: 1; transform: translateY(0); }
  50%  { opacity: 0.35; transform: translateY(-1px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .badge-new { animation: none; }
}
/*----Footer----*/

#footer .footer-top {
 background-color: rgb(48,29,108);
  color: white;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: 'Poppins', sans-serif;
  color:white;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #354144;
  color: white;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links-New a {
  font-size: 18px;
  display: inline-block;
  background: orange;
  color: blue;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links-New a:hover {
  background: #212529;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top .social-links a:hover {
  background: #01b1d7;
  color: #fff;
  text-decoration: none;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color:white;
  position: relative;
  padding-bottom: 12px;
  font-family: Poppins;
}


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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: white;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: white;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  color: white;
}

#footer .footer-top .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 0px;
  background: orange;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
  background: orange;
}

#footer .copyright {
  background:rgb(232, 130, 13);
  color: white!important;
  text-align: center;
  padding:10px;
  font-size: 18px;
  font-weight: bold;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}
#footer .footer-link-bottom a{
  color: white;
  font-weight: 600;
  padding: 15px 15px;
}
#footer .footer-link-bottom a:hover{
  color: #eeeeee;
}
.logo-img {
  width: 150px;
  height: auto;
  object-fit: contain;
  padding: 0;
  display: block;
}
.pl_20{
  padding-left: 20px!important;
}
@media (max-width: 576px) {
  .social {
    flex-wrap: wrap;
  }
  .social .btn-square {
    flex: 0 0 17%;
    margin-bottom: 10px;
  }
  .pl_20{
    padding-left: 0px!important;
  }
  
}
.card2{
    color:white; 
  font-size:16px; 
  font-weight: 600; 
  line-height: 45px;
}
/*--Bulk SMS*/
.card1{
  color:white; 
  font-size:16px; 
  font-weight: 600; 
  line-height: 45px;
}
.par1{
  text-align:center; 
  line-height: 32px; 
  color: #000;
}
.par2{
  line-height: 32px; 
  color: #000;
}
.white{
  color: white !important;;
}
/*-----Bulk and Api-----*/
.bulk{
    color: black!important; 
    font-size:42px; 
    font-weight:bold; 
    line-height: 40px; 
}
.business{
    text-align:left; 
    line-height: 32px; 
    color: black;
}
.btn1{
    border:1px solid orange;
    color: white;
    background-color: rgb(58, 58, 182);
}
.btn1:hover{
    border:1px solid ;
    background-color: orangered;
    color: white;
}
.par1{
  text-align:center; 
  line-height: 32px; 
  color: #000;
}
.section-title h2 {
  font-weight: bold;
  margin-bottom: 20px;
  
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); 
}
.card img {
  height: 200px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .card img {
    height: 150px;
  }
}
.bg_blue {
  background: linear-gradient(135deg, #a1c4fd, #c2e9fb);
  color: #222;
  text-align: center;
}
/* 
.section-title h2 {
  color: #fff;
  font-weight: bold;
  margin-bottom: 15px;
}

.section-title p {
  color: #f1f1f1;
  font-size: 15.5px;
  max-width: 800px;
  margin: auto;
  line-height: 1.6;
} */
.service-card {
  background: linear-gradient(145deg, #ffffff, #f1f1f1);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

/* Hover glow */
.service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 15px 35px rgba(24, 119, 242, 0.3);
}

/* Icon circle background */
.service-card i {
  font-size: 2.8rem !important;
  color: #fff !important;
  background: linear-gradient(135deg, #ff9800, #ff5722) !important;
  padding: 18px !important;
  border-radius: 50% !important;
  display: inline-block !important;
  margin-bottom: 20px !important;
  transition: all 0.4s ease !important; 
}

/* Icon hover animation */
.service-card:hover i {
  transform: rotate(10deg) scale(1.15);
  background: linear-gradient(135deg, #ff5722, #e91e63);
}

/* Title */
.service-card h5 {
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 18px;
  color: #222;
}

/* Paragraph */
.service-card p {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 20px;
  color: #555;
}

.btn1 {
  background: #fff;
  color: #222;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: all 0.3s ease;
}

.btn1:hover {
  color: #1877f2;
  background-image: linear-gradient(#fff, #fff),
    linear-gradient(135deg, #1877f2, #00c6ff);
  }

  /* Section background */
.bg_blue {
  background: linear-gradient(135deg, #a1c4fd, #c2e9fb); /* same everywhere */
  color: #222;
  text-align: center;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

/* Section Title */
.section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #0d47a1;
}

.section-title p {
  font-size: 1rem;
  max-width: 750px;
  margin: 0 auto;
  opacity: 0.9;
  color: #444;
  line-height: 1.6;
}

/* Common Card Styling */
.card {
    border: none;
    border-radius: 25px;
    background: linear-gradient(145deg, #ffffff, #f1f1f1);
    color: #333;
    padding: 30px 20px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}



/* Hover animation */
/* .card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 15px 35px rgba(24, 119, 242, 0.3);
} */

/* Icon circle background */
.card i {
  font-size: 1.8rem;               
  color: #fff;
  width: 70px;                    
  height: 70px;
  line-height: 70px;
  background: linear-gradient(135deg, #ff9800, #ff5722);
  border-radius: 50%;             
  display: flex;                   /* flex for perfect center */
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;             /* auto se center + bottom gap */
  transition: all 0.4s ease;
}

/* Hover Effect */
.card:hover i {
  transform: rotate(10deg) scale(1.1);
  background: linear-gradient(135deg, #ff5722, #e91e63);
}

/* Card Heading */
.card h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #0d47a1;
}

/* Card Paragraph */
.card p {
  font-size: 0.95rem;
  color: #555;
  min-height: 60px;
  margin-bottom: 20px;
}

/* WhatsApp Icon (green special) */
/* .orange {
  background: linear-gradient(135deg, #25d366, #128c7e) !important;
} */

/* Button style */
/* .btn1 {
  background: linear-gradient(135deg, #e3f2fd, #bbdefb);
  color: #222;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: inline-block;
} */

.btn1:hover {
  color: #1877f2;
  background-image: linear-gradient(#fff, #fff),
    linear-gradient(135deg, #1877f2, #00c6ff);
  box-shadow: 0 6px 20px rgba(24, 119, 242, 0.3);
  transform: translateY(-3px);
}

.section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0d47a1;
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  text-align: center;
  
}
/* ===== Industry Used Services Section ===== */
.section-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;   
  color: #0d47a1;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  width: 60%;
  height: 3px;
  background: linear-gradient(135deg, #42a5f5, #478ed1);
  bottom: 0;
  left: 20%;
  border-radius: 50px;
}

/* Card Styling */
/* .card {
  border: none;
  border-radius: 25px;
  background: linear-gradient(145deg, #ffffff, #f1f1f1);
  color: #333;
  padding: 30px 20px;
  transition: all 0.4s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
} */




.para4{
text-align: center;
}

/* .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
} */

/* Card Icon */
.card i {
  font-size: 2.5rem;
  color: #fff;
  background: linear-gradient(135deg, #ff9800, #ff5722);
  padding: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  transition: all 0.4s ease;
}

/* Icon Hover Animation */
.card:hover i {
  transform: rotate(12deg) scale(1.15);
  background: linear-gradient(135deg, #ff5722, #e91e63);
}

/* Card Title */
.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
}

/* Card Text */
.card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #555;
}
/* Section Title */
.section-title h4 {
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  display: inline-block;
  color: #333;
}

.section-title h4::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #ff9800;
  margin: 10px auto 0;
  border-radius: 3px;
}

/* Multiple Ways Box */
.row.text-center .col-md {
  transition: all 0.4s ease;
}

.row.text-center .col-md:hover {
  transform: translateY(-10px) scale(1.05);
}

/* Icon Style */
.row.text-center i {
  font-size: 3rem;
  color: #ff9800;
  background: rgba(255, 152, 0, 0.15);
  padding: 20px;
  border-radius: 50%;
  transition: all 0.4s ease;
  display: inline-block;
}

.row.text-center .col-md:hover i {
  background: #ff9800;
  color: #fff;
  transform: rotate(10deg) scale(1.2);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Text under icon */
.row.text-center p.web {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  transition: color 0.4s ease;
}

.row.text-center .col-md:hover p.web {
  color: #ff5722;
}
.testimonial-section {
 background: linear-gradient(135deg, #a1c4fd, #c2e9fb);
  color: #222;
  text-align: center;
  padding: 60px 0;
  width: 100%;
  
}

.testimonial-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #0d47a1;
}

.testimonial-slider {
  display: flex;
  gap: 20px;
  justify-content: center;
  overflow: hidden;
  padding: 0 5%;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  width: 320px;
  min-width: 320px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.testimonial-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 4px solid #10036a;
}

.testimonial-card p {
  font-size: 16px;
  color: #333;
  font-style: italic;
  margin-bottom: 15px;
  line-height: 1.6;
}

.testimonial-card h4 {
  color: #10036a;
  font-size: 16px;
  font-weight: 600;
}


/* Section Container */
section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f7f9fc, #eef3f9);
}

/* Left Side Content */
.content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  position: relative;
  display: inline-block;
  animation: fadeInDown 1s ease-out;
}

.content h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff9800;
  margin-top: 10px;
  border-radius: 3px;
  animation: growLine 1.2s ease-out;
}

.content p {
  margin: 20px 0;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
  animation: fadeInUp 1.2s ease-out;
}

/* Button Styling */
.btn1 {
  background: #ff9800;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: 0 5px 15px rgba(255,152,0,0.3);
}

.btn1:hover {
  background: #e67e22;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255,152,0,0.4);
}

/* Right Side Image */
.col-lg-6 img {
  /* transition: transform 0.6s ease, filter 0.6s ease; */
  animation: fadeInRight 1.5s ease-out;
}

.col-lg-6 img:hover {
  /* transform: scale(1.05) rotate(2deg); */
  filter: drop-shadow(0 8px 15px rgba(0,0,0,0.2));
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes growLine {
  from { width: 0; }
  to { width: 60px; }
}





.clients-section {
  /* background: #10036a; */
  padding: 10px 10px;
  text-align: center;
}

/* Section Heading */
.clients-section .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  color: #0d47a1;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.clients-section .section-title::after{
  content: "";
    position: absolute;
    width: 60%;
    height: 3px;
    background: linear-gradient(135deg, rgb(66, 165, 245), rgb(71, 142, 209));
    bottom: 0;
    left: 20%;
    border-radius: 50px;
}


.clients-section .section-subtitle {
  text-align: center;
  color: #555;
  font-size: 1rem;
  margin-bottom: 40px;
}

/* Slider box styling */
.client-box {
  /* background: #fff; */
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  height: 120px; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-box img {
  max-height: 80px;
  max-width: 100%;
  transition: transform 0.3s ease;
}

.client-box:hover {
  /* transform: translateY(-8px); */
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.client-box:hover img {
  transform: scale(1.1);
}

/* Swiper custom spacing */
.client-slider .swiper-slide {
  padding: 0px;
}

/* Responsive */
@media (max-width: 768px) {
  .clients-section .section-title {
    font-size: 1.8rem;
  }
  .client-box {
    height: 100px;
    padding: 15px;
  }
  .client-box img {
    max-height: 50px;
  }
}
/* Wrapper Background */
.wrapper {
  padding: 60px 0;
  /* background: #f9f9f9; */
}

.wrapper .heading {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center !important;
  color: #0d47a1;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
 
}

.wrapper .heading::after {
   content: "";
    position: absolute;
    width: 60%;
    height: 3px;
    background: linear-gradient(135deg, #42a5f5, #478ed1);
    bottom: 0;
    left: 20%;
    border-radius: 50px;
}

/* Card styling */
.wrapper .img-card img {
  width: 100%;
  height: 160px;       /* पहले 220px था */
  object-fit: cover;
  transition: transform 0.3s ease;
}

.wrapper .card:hover .img-card img {
  transform: scale(1.04);
}

/* Card content */
.wrapper .card-content {
  padding: 10px;
  text-align: center;
}

.wrapper .card-title a {
  font-size: 1.05rem;   /* थोड़ा छोटा */
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Button */
.wrapper .card-read-more {
  padding: 2px;
  text-align: center;
}

.wrapper .card-read-more .btn {
  background: #ff6600;
  color: #fff !important;
  font-weight: 600;
  border-radius: 20px;
  padding: 2px 16px;   /* पहले 8px 20px था */
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.wrapper .card-read-more .btn:hover {
  background: #0d47a1;
}
  .section-title h3 {
        font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: #0d47a1;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
  }

.section-title h3::after{
      content: "";
    position: absolute;
    width: 60%;
    height: 3px;
    bottom: 0px;
    left: 20%;
    background: linear-gradient(135deg, rgb(66, 165, 245), rgb(71, 142, 209));
    border-radius: 50px;
}




.slider-section {
  /* background: #10036a;   */
  padding: 60px 0;       /* upar niche space */
}

.team-section h2{
font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: #0d47a1;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.team-section h2::after{
  content: "";
    position: absolute;
    width: 60%;
    height: 3px;
    background: linear-gradient(135deg, #42a5f5, #478ed1);
    bottom: 0;
    left: 20%;
    border-radius: 50px;
}

.team-card {
  background: #fff;
  border-radius: 20px;
  text-align: center;
  padding: 25px 20px;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  max-width: 300px;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.team-card img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  border: 4px solid #10036a;
  transition: all 0.4s ease;
}

.team-card h4 {
  color: #10036a;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.team-card p {
  color: #444;
  margin: 0;
  font-size: 15px;
}

.team-card:hover {
  transform: translateY(-12px) scale(1.07);
  box-shadow: 0 10px 30px rgba(16, 3, 106, 0.4);
  border: 2px solid #10036a;
}

.team-card:hover img {
  border-color: #fff;
  box-shadow: 0 0 15px #10036a;
}

/* FAQ Section */
.faqs-section {
  padding: 50px 20px;
}

.faqs-section h2 {
  font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: #0d47a1;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.faqs-section h2::after {
     content: "";
    position: absolute;
    width: 60%;
    height: 3px;
    background: linear-gradient(135deg, #42a5f5, #478ed1);
    bottom: 0;
    left: 20%;
    border-radius: 50px;
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

/* Card1 style */
.card2 {
  border: none;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.card2:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.card2 .card-body {
  padding: 18px;
}

/* FAQ Item */
.faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #0d47a1;
  margin-bottom: 8px;
}

.faq-item p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin: 0;
}


.section-title h4{
  font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: #0d47a1;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title h4::after{
  content: "";
    position: absolute;
    width: 60%;
    height: 3px;
    background: linear-gradient(135deg, #42a5f5, #478ed1);
    bottom: 0;
    left: 20%;
    border-radius: 50px;
}


/* Hero Section */
.hero-section {
  position: relative;
  min-height: 80vh;
  text-align: center;
  color: #fff;
  padding: 60px 20px;
  background-attachment: fixed; /* Parallax effect */
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
 /* Dark overlay */
  z-index: 0;
}

.hero-section .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-section h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-in-out;
}

.hero-section p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  animation: fadeInUp 1.2s ease-in-out;
}

.hero-section .btn {
  padding: 12px 30px;
  font-size: 1rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-section .btn:hover {
  background: #f5a106;
  color: #fff;
  transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Services Section */
.services-section {
  background: #f9f9f9;
  padding: 60px 20px;
}

.services-section .section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #0d47a1;
  position: relative;
  display: inline-block;
}

.services-section .section-heading::after {
  content: "";
  width: 60%;
  height: 3px;
  background: #ff9800;
  display: block;
  margin: 8px auto 0;
  border-radius: 5px;
}

/* Service Card */
.services-card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.services-card img {
  height: 200px;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.4s ease;
}

.services-card .card-body {
  padding: 2px;
}

.services-card h5 {
  font-weight: 600;
  margin-bottom: 12px;
  color: #222;
  font-size: 1.2rem;
}

.services-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

/* Hover Effect */
.services-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.services-card:hover img {
  transform: scale(1.1);
}


/* About SEO Section */
#about-seo {
  background: #f9f9f9;
  padding: 60px 20px;
  border-radius: 10px;
}

#about-seo .section-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0d47a1;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

#about-seo .section-heading::after {
  content: "";
  width: 60%;
  height: 3px;
  background: #ff9800;
  display: block;
  margin: 8px auto 0;
  border-radius: 5px;
}

#about-seo .lead {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  max-width: 850px;
  margin: 0 auto;
}

#services {
  background: #f9f9f9;
}

#services .section-heading {
  
  font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0d47a1;
    position: relative;
    display: inline-block;
}

#services .section-heading::after{
      content: "";
    width: 60%;
    height: 3px;
    background: #ff9800;
    display: block;
    margin: 8px auto 0;
    border-radius: 5px;
}


/* Section Styling */
#why-us {
  background: #f9f9f9;
  padding: 60px 0;
}

#why-us .section-heading {
  font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0d47a1;
    position: relative;
    display: inline-block;
}

#why-us .section-heading::after {
     content: "";
    width: 60%;
    height: 3px;
    background: #ff9800;
    display: block;
    margin: 8px auto 0;
    border-radius: 5px;
}



/* Row with spacing */
#why-us .row {
  display: flex;
  justify-content: center;
  gap: 25px; /* gap between cards */
  flex-wrap: wrap;
}

/* Card design */
#why-us .col-md-4 {
  flex: 0 0 30%;
  max-width: 30%;
}

#why-us .col-md-4 .icon img {
  width: 200px;   /* image size bada */
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  /* border-radius: 50%;
  background: #fff; */
  padding: 15px;
  /* box-shadow: 0 4px 15px rgba(0,0,0,0.1); */
  transition: transform 0.3s ease;
}

#why-us .col-md-4 .icon img:hover {
  transform: scale(1.1);
}

#why-us h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

#why-us p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  padding: 0 10px 25px 10px; /* padding around + bottom space */
}

/* Card hover effect */
#why-us .col-md-4 {
  background: #fff;
  border-radius: 15px;
  padding: 25px 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

#why-us .col-md-4:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 992px) {
  #why-us .col-md-4 {
    flex: 0 0 45%;
    max-width: 45%;
  }
}

@media (max-width: 768px) {
  #why-us .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


/* Section Background & Padding */
#why-facebook-ads {
  background: #f9f9f9;
  padding: 60px 20px;
}

/* Heading */
#why-facebook-ads .section-heading {
 font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0d47a1;
    position: relative;
    display: inline-block;
}

/* Decorative underline */
#why-facebook-ads .section-heading::after {
    content: "";
    width: 60%;
    height: 3px;
    background: #ff9800;
    display: block;
    margin: 8px auto 0;
    border-radius: 5px;
}

/* Lead text */
#why-facebook-ads .lead {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  #why-facebook-ads .section-heading {
    font-size: 1.8rem;
  }
  #why-facebook-ads .lead {
    font-size: 1rem;
    padding: 0 10px;
  }
}


/* Section Background */
#services {
  background: #f9f9f9;
}

/* Section Heading */
#services .section-heading {
     font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0d47a1;
    position: relative;
    display: inline-block;
}

#services .section-heading::after {
content: "";
    width: 60%;
    height: 3px;
    background: #ff9800;
    display: block;
    margin: 8px auto 0;
    border-radius: 5px;
}

/* Service Cards */
.services-card {
  border: none;
  border-radius: 20px;
  background: #fff;
  padding: 20px;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.services-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

/* Card Images */
.services-card img {
  max-width: 300px;
  margin: 0 auto 15px;
  transition: transform 0.4s ease;
}

.services-card:hover img {
  transform: scale(1.1);
}

/* Card Title */
.services-card .card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

/* Card Text */
.services-card .card-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  padding: 0 5px;
}

/* Responsive */
@media (max-width: 768px) {
  #services .section-heading {
    font-size: 1.8rem;
  }

  .services-card {
    padding: 15px;
  }

  .services-card img {
    max-width: 80px;
  }
}




/* Section Heading */
#seo-plans {
  background: linear-gradient(135deg, #f9fafc, #eef2f7);
}

#seo-plans .section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0d47a1;
    position: relative;
    display: inline-block;
}
#seo-plans .section-heading::after{
      content: "";
    width: 60%;
    height: 3px;
    background: #ff9800;
    display: block;
    margin: 8px auto 0;
    border-radius: 5px;
}
/* Plan Card */
.plan-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border: 3px solid transparent;
  overflow: hidden;
}

.plan-card:hover {
  transform: translateY(-12px);
  border-image: linear-gradient(45deg, #4a90e2, #00c6ff) 1;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* Featured Card */
.plan-card.featured {
  background: linear-gradient(135deg, #4a90e2, #357abd);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.plan-card.featured .plan-price,
.plan-card.featured .plan-title,
.plan-card.featured .plan-features li {
  color: #fff !important;
}

/* Best Value Badge */
.plan-card .badge {
  position: absolute;
  top: 15px;
  right: -35px;
  background: #ff4757;
  color: #fff;
  padding: 5px 40px;
  font-size: 0.8rem;
  font-weight: bold;
  transform: rotate(45deg);
}

/* Titles */
.plan-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.plan-price {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #4a90e2;
}

.plan-price span {
  font-size: 1rem;
  color: #666;
}

/* Features */
.plan-features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.plan-features li {
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: #444;
  transition: color 0.3s ease;
}

.plan-card:hover .plan-features li {
  color: #222;
}

/* Button */
.btn-plan {
  display: inline-block;
  background: linear-gradient(45deg, #4a90e2, #00c6ff);
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-plan:hover {
  background: linear-gradient(45deg, #357abd, #008cff);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .plan-card.featured {
    transform: scale(1);
  }
}

#google-plans .section-heading{
      font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0d47a1;
    position: relative;
    display: inline-block;
}

#google-plans .section-heading::after{
content: "";
    width: 60%;
    height: 3px;
    background: #ff9800;
    display: block;
    margin: 8px auto 0;
    border-radius: 5px;
}

#why-facebook-ads .section-heading{
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0d47a1;
    position: relative;
    display: inline-block;
}
#why-facebook-ads .section-heading::after{
    content: "";
    width: 60%;
    height: 3px;
    background: #ff9800;
    display: block;
    margin: 8px auto 0;
    border-radius: 5px;
}

/* CTA Section - Full Width */
.cta-section {
  width: 100%;
  background: linear-gradient(135deg, #0d47a1, #1976d2); /* Blue Gradient */
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 0; /* Full width section, no rounded corners */
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  transition: all 0.4s ease-in-out;
}

.cta-section:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

/* Inner Container */
.cta-section .container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.cta-section .section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

/* Lead Paragraph */
.cta-section .lead {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f1f1f1;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Button */
.cta-section .cta-button {
  background: #fff;
  color: #0d47a1;
  font-weight: 600;
  padding: 14px 35px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.cta-section .cta-button:hover {
  background: #1565c0;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 15px;
  }
  .cta-section .section-heading {
    font-size: 2rem;
  }
  .cta-section .lead {
    font-size: 1rem;
  }
}
#fb-plans .section-heading{
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0d47a1;
    position: relative;
    display: inline-block;
}
#fb-plans .section-heading::after{
    content: "";
    width: 60%;
    height: 3px;
    background: #ff9800;
    display: block;
    margin: 8px auto 0;
    border-radius: 5px;
}

/* Section Base */
.promotional-section {
  padding: 50px 20px;
  background: #f9f9f9;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
}

.promotional-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Heading */
.promotional-section h2 {
  font-size: 28px;
  font-weight: 700;
  color: #0d47a1; /* Royal Blue */
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.promotional-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ffd700; /* Golden underline */
  margin: 8px auto 0;
  border-radius: 3px;
}

/* Paragraph */
.promotional-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

/* List Styling */
.promotional-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.promotional-section ul li {
  font-size: 16px;
  color: #222;
  font-weight: 500;
  margin: 10px 0;
  padding-left: 30px;
  position: relative;
  transition: all 0.3s ease;
}

/* Custom Icon Bullet */
.promotional-section ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #0d47a1; /* Blue check */
  font-weight: bold;
}

/* Hover Effect */
.promotional-section ul li:hover {
  color: #0d47a1;
  transform: translateX(5px);
}

.pricing-section {
    background: linear-gradient(135deg, #f7f9fc, #eef3f9);
}
.pricing-section h2{
font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: #0d47a1;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.pricing-section h2::after{
  content: "";
    position: absolute;
    width: 60%;
    height: 3px;
    background: linear-gradient(135deg, #42a5f5, #478ed1);
    bottom: 0;
    left: 20%;
    border-radius: 50px;
}

.pricing-card {
 background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  padding: 30px 25px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

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

.pricing-card h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0d47a1;
}

.pricing-card h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.pricing-card p {
  font-size: 14px;
  margin-bottom: 20px;
}

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

.pricing-card ul li {
  font-size: 15px;
  color: #333;
  margin: 10px 0;
  padding-left: 25px;
  position: relative;
}

.pricing-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #0d47a1;
  font-weight: bold;
}

.btn-plan {
  display: inline-block;
  padding: 12px 25px;
  background: #0d47a1;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-plan:hover {
  background: #08306b;
  transform: translateY(-2px);
}

/* Popular (Best Value) Card */
.pricing-card.popular {
  border: 2px solid #0d47a1;
}

.pricing-card .badge {
  position: absolute;
  top: -12px;
  right: 15px;
  background: #ff9800;
  color: #fff;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.note {
  font-size: 14px;
  color: #444;
}
.note .red {
  color: red;
}


/* Case Studies Section
section.pt-5.pb-3 {
    background: #f9f9f9;
}

section.pt-5.pb-3 .section-heading h5 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: #0d47a1;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

section.pt-5.pb-3 .section-heading h5::after{
      content: "";
    position: absolute;
    width: 60%;
    height: 3px;
    bottom: 0px;
    left: 20%;
    background: linear-gradient(135deg, rgb(66, 165, 245), rgb(71, 142, 209));
    border-radius: 50px;
} */
section.pt-5.pb-3 hr {
    width: 60px;
    height: 3px;
    background: #1976d2;
    margin: 10px auto 30px;
    border: none;
    border-radius: 2px;
}

/* Case Study Cards */
/* section.pt-5.pb-3 .col-lg-4 { */
  
    /* margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    
} */

/* section.pt-5.pb-3 .col-lg-4:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-radius: 15px;
} */

/* Images */
/* section.pt-5.pb-3 .img-fluid {
    max-width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
} */

section.pt-5.pb-3 .col-lg-4:hover .img-fluid {
    transform: scale(1.05);
}

/* Headings & Paragraphs */
section.pt-5.pb-3 h6 {
    /* font-size: 20px;
    font-weight: 600;
    color: #0d47a1;
    margin-top: 15px; */
}

section.pt-5.pb-3 p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* Responsive Fix */
@media (max-width: 992px) {
    section.pt-5.pb-3 .col-lg-4 {
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    section.pt-5.pb-3 h6 {
        font-size: 18px;
    }
    section.pt-5.pb-3 p {
        font-size: 14px;
    }
}



/* Full Width Voice Call Advantages */
.voice-advantages {
  width: 100%;
  background: #f9fbfd; /* light bg */
  padding: 60px 20px;
  text-align: center;
}

.containervoice {
  max-width: 1140px;
  margin: 0 auto;
}

.voice-advantages h3 {
     font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: #0d47a1;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.voice-advantages h3::after {
  content: "";
    position: absolute;
    width: 60%;
    height: 3px;
    background: linear-gradient(135deg, #42a5f5, #478ed1);
    bottom: 0;
    left: 20%;
    border-radius: 50px;
}

.voice-advantages p {
  font-size: 17px;
  color: #333;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.pricing-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #0d47a1;
}

.pricing-card h2 {
  font-size: 28px;
  font-weight: bold;
  color: #ff5722;
  margin-bottom: 10px;
}

.pricing-card p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #444;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Button style */
/* .btn1 {
  background: #0d47a1;
  color: #fff !important;
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn1:hover {
  background: #ff5722;
  color: #fff !important;
} */


/* Section Background */
.bg_blue {
  /* background: #0d47a1; 
  color: #fff; */
}

/* Section Title */
/* .bg_blue h2 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
} */

/* Process Step */
.bg_blue .col-md-3 {
  padding: 20px;
  transition: all 0.3s ease;
}

.bg_blue .col-md-3:hover {
  transform: translateY(-8px);
}

/* Icon Circle */
/* .bg_blue i {
  background: #fff;
  color: #ff5722;
  padding: 20px;
  border-radius: 50%;
  font-size: 40px;
  transition: all 0.3s ease;
}

.bg_blue .col-md-3:hover i {
  background: #ff5722;
  color: #fff;
} */

/* Step Title */
.bg_blue h5 {
  /* margin-top: 15px;
  font-weight: 600;
  font-size: 18px; */
  /* color: #fff; */
}

/* Step Description */
.bg_blue p {
  font-size: 14px;
  margin-top: 10px;
  color: #000;
  line-height: 1.6;
}


/* Hero Section */
.hero-tollfree {
  background: linear-gradient(135deg, #007bff, #00c6ff); /* blue gradient */
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

/* Heading */
.hero-tollfree  h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  animation: fadeInDown 1s ease-in-out;
}

/* Paragraph */
.hero-tollfree p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-in-out;
}

/* CTA Button */
.tollfree-btn {
  background: #fff;
  color: #007bff;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.tollfree-btn:hover {
  background: #0056b3;
  color: #fff;
  transform: scale(1.05);
 
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-webdev .accordion-button {
  background: #fff;
  color: #222;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
}

.faq-webdev .accordion-button:not(.collapsed) {
  background: rgb(48, 29, 108);
  color: #fff;
  box-shadow: 0px 3px 10px rgba(0,0,0,0.1);
}

.faq-webdev .accordion-item {
  border: none;
}
.question {
      font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: #0d47a1;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.question::after{
      content: "";
    position: absolute;
    width: 60%;
    height: 3px;
    background: linear-gradient(135deg, #42a5f5, #478ed1);
    bottom: 0;
    left: 20%;
    border-radius: 50px;
}

    /* Hero */
    .career-hero {
      background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)), url('img/office.jpg') center/cover no-repeat;
      color: #fff;
      padding: 100px 20px;
    }
    .career-hero h1 {
      font-size: 3rem;
      font-weight: 700;
    }
    .career-hero p {
      font-size: 1.2rem;
    }

    /* Section headings */
    .section-title {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 30px;
      text-align: center;
      color: #333;
    }

    /* Job Cards */
    .job-card {
      border: 1px solid #eee;
      border-radius: 12px;
      transition: all 0.3s ease;
      background: #fff;
    }
    .job-card:hover {
      transform: translateY(-5px);
      box-shadow: 0px 6px 18px rgba(0,0,0,0.1);
    }
    .job-card h5 {
      color: #0d6efd;
      font-weight: 600;
    }

    /* Benefits */
    .benefit-card {
      text-align: center;
      padding: 20px;
      border-radius: 12px;
      background: #f8f9fa;
      transition: all 0.3s ease;
    }
    .benefit-card:hover {
      background: #0d6efd;
      color: #fff;
      transform: scale(1.05);
    }
    .benefit-card i {
      font-size: 2.5rem;
      margin-bottom: 15px;
      color: #0d6efd;
    }
    .benefit-card:hover i {
      color: #fff;
    }

    /* Apply Section */
    .apply-section {
      background: #0d6efd;
      color: #fff;
      padding: 60px 20px;
      text-align: center;
    }
    .apply-section h2 {
      font-size: 2rem;
      margin-bottom: 15px;
    }
    .apply-section p {
      font-size: 1.1rem;
      margin-bottom: 20px;
    }


    .faq-section h3{
          font-size: 2.2rem;
    font-weight: 700;
    text-align: center !important;
    color: #0d47a1;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    }

    .faq-section h3::after{
          content: "";
    position: absolute;
    width: 60%;
    height: 3px;
    background: linear-gradient(135deg, #42a5f5, #478ed1);
    bottom: 0;
    left: 20%;
    border-radius: 50px;
    }


    .contact-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
  background: #f1f4f9; /* overall section bg */
}

.contact-form {
  background: linear-gradient(to right, #a1c4fd, #c2e9fb, #e0f7ff);
  padding: 35px;
  width: 100%;
  max-width: 520px;
  border-right: 4px solid #007bff;   /* Right border */
  border-bottom: 4px solid #007bff;  /* Bottom border */
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}
 
.contact-form h2 {
  margin-bottom: 20px;
  text-align: center;
  color: #222;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
  background: #fff;
  transition: border 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #007bff;
  box-shadow: 0 0 8px rgba(0,123,255,0.2);
}

.button2 {
  display: inline-block;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s, background 0.3s;
}

.button2:hover {
  transform: scale(1.03);
  background: linear-gradient(135deg, #0056b3, #003d80);
}

.contact-header {
    position: relative;
    background: url('img/contact.png') no-repeat center center/cover;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.contact-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* semi-transparent overlay for readability */
    z-index: 1;
}

.contact-header h1 {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.contact-header p {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-header {
        padding: 70px 15px;
    }
    .contact-header h1 {
        font-size: 2.2rem;
    }
    .contact-header p {
        font-size: 1rem;
    }
}
.contact-header {
    position: relative;
    background: url('img/contact.png') no-repeat center center/cover;
    padding: 100px 20px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.contact-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4); /* semi-transparent overlay for readability */
    z-index: 1;
}

.contact-header h1 {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.5);
}

.contact-header p {
    position: relative;
    z-index: 2;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-header {
        padding: 70px 15px;
    }
    .contact-header h1 {
        font-size: 2.2rem;
    }
    .contact-header p {
        font-size: 1rem;
    }
}
.maps-container{
  align-items: center;
  
}

.maps-container {
    position: relative;
    width: 100%;
    max-width: 1200px; /* center container */
    margin: 50px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.maps-container iframe {
    width: 100%;
    height: 400px; /* fixed height */
    border: 0;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.maps-container iframe:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 768px) {
    .maps-container iframe {
        height: 300px;
    }
}

/* Hero Section */
.hero {
 background: linear-gradient(135deg, #6a11cb, #8e54e9, #2575fc);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

/* Text Section */
.hero h1 {
  font-size: 2.8rem;
  line-height: 1.3;
  color: #fff;
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

/* Badge */
.bg-gradient-orange {
  background: linear-gradient(45deg, #ff9a3d, #ffd93d);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
}





.btn-outline-light {
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 1rem;
}

/* Hero Points */
.hero-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
  cursor: default;
}

.hero-points li i {
  color: #ffeb3b; /* bright yellow check icon */
  transition: all 0.3s ease;
}

/* Hover Effect */
.hero-points li:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(255,255,255,0.8), 0 0 12px rgba(255,235,59,0.6);
}

.hero-points li:hover i {
  transform: scale(1.2);
  color: #ffd700; /* deeper gold on hover */
  text-shadow: 0 0 8px #ffd700, 0 0 16px #ffeb3b;
}

/* Right Side Image */
.hero-art {
  position: relative;
  text-align: center;
}

.hero-art img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  animation: float 4s ease-in-out infinite;
}

/* Floating Tags */
.float-tag {
  position: absolute;
  background: #fff;
  color: #333;
  font-weight: 600;
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 0.9rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  animation: pulse 2s infinite;
}

.tag-1 { top: 15%; left: -10%; }
.tag-2 { bottom: 70%; right: -25%; }
.tag-3 { top: 80%; right: 40%; }

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 991px) {
  .hero {
    padding: 60px 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .float-tag {
    font-size: 0.75rem;
    padding: 6px 12px;
  }
}

.button{
  background: linear-gradient(135deg, #6a11cb, #2575fc);
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
}

.button:hover{
   background: linear-gradient(135deg, #2575fc, #6a11cb);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0px 6px 18px rgba(0,0,0,0.3);
}


/* Modal wrapper */
#plansModal .modal-dialog {
    max-width: 700px; /* chhota width */
}

#plansModal .modal-content {
    border-radius: 12px;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Header */
#plansModal .modal-header {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    border-bottom: none;
    padding: 0.8rem 1rem;
    font-size: 1rem;
}

/* Body */
#plansModal .modal-body {
    background-color: #f8f9fa;
    padding: 1rem 1rem;
}

/* Cards */
#plansModal .card {
    border-radius: 10px;
    padding: 0.8rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    background: #fff;
}

/* Card hover */
#plansModal .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.12);
}

/* Titles & Price */
#plansModal .card h5 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

#plansModal .card h3 {
    font-size: 1.3rem;
    color: #ff6b6b;
    margin-bottom: 0.3rem;
}

/* Features */
#plansModal .card ul li {
    margin-bottom: 0.2rem;
    font-size: 0.8rem;
    color: #555;
}

/* Buy Now Button */
#plansModal .card .btn {
    margin-top: 0.5rem;
    padding: 0.35rem 0.7rem;
    font-size: 0.8rem;
    border-radius: 5px;
}

/* Unique Plan Colors */
#plansModal .basic { border-top: 2px solid #00c851; }
#plansModal .standard { border-top: 2px solid #33b5e5; }
#plansModal .premium { border-top: 2px solid #ff4444; }


/* Modal container unique styling */
#buyNowModal .modal-dialog {
    max-width: 420px; /* Compact width */
    margin: 1.75rem auto;
}

/* Modal content */
#buyNowModal .modal-content {
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(135deg, #6a11cb, #2575fc); /* Gradient header bg */
    color: #fff;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Header */
#buyNowModal .modal-header {
    border-bottom: none;
    padding: 1rem 1.25rem;
}

#buyNowModal .modal-title {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Close Button */
#buyNowModal .btn-close-white {
    filter: brightness(1.2);
}

/* Body */
#buyNowModal .modal-body {
    padding: 1.25rem;
    background-color: #f8f9fa; /* Light form background */
    color: #333;
    border-radius: 0 0 14px 14px;
}

/* Form Fields */
#buyNowModal .form-control {
    border-radius: 8px;
    padding: 0.55rem 0.75rem;
    border: 1px solid #ccc;
    font-size: 0.9rem;
}

#buyNowModal .form-label {
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.3rem;
}

/* Submit Button */
#buyNowModal .btn-warning {
    background: #ffb74d;
    color: #fff;
    border: none;
    font-weight: 600;
    padding: 0.5rem;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#buyNowModal .btn-warning:hover {
    background: #ffa726;
    transform: translateY(-2px);
}

/* Success Message */
#buyNowModal #successMessage {
    font-size: 0.85rem;
    text-align: center;
}
 

/* ---------------- Why Choose Section ---------------- */
.why {
    background: inherit; /* same as page */
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

/* Title */
.why .section-title {
       font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #0d47a1;
    position: relative;
    display: inline-block;
}

.why .section-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 4px;
    background: #ffcc00;
    margin: 12px auto 0;
    border-radius: 3px;
}

.why p.text-light {
    color: #e0e0e0;
    font-size: 1rem;
    margin-bottom: 60px;
    text-align: center;
}

/* Cards */
.why-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.why-card i {
    font-size: 2.8rem;
    color: #ffcc00;
    margin-bottom: 20px;
    padding: 18px;
    border-radius: 50%;
    background: rgba(255, 204, 0, 0.08);
    transition: all 0.4s ease;
    display: inline-block;
}

.why-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

.why-card h5 .emoji {
    margin-right: 6px;
}

.why-card p {
    font-size: 0.95rem;
    color: #000;
    line-height: 1.5;
}

/* Hover effects */
.why-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
}

.why-card:hover i {
    transform: scale(1.2) rotate(12deg);
    background: rgba(255, 204, 0, 0.2);
    box-shadow: 0 8px 15px rgba(255, 204, 0, 0.4);
}

/* Responsive */
@media (max-width: 991px) {
    .why .section-title {
        font-size: 2rem;
    }
    .why-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .why .section-title {
        font-size: 1.7rem;
    }
    .why-card i {
        font-size: 2.3rem;
        padding: 12px;
    }
}


/* ---------------- Pricing Section ---------------- */
.pricing {
      background: linear-gradient(135deg, #6a11cb, #8e54e9, #2575fc);
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
}

.pricing .section-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 0.5rem;
  text-align: left;
}

/* .pricing  {
  font-size: 1rem;
  color: #dcdcdc !important;
} */

/* Region Toggle */
.toggle-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.toggle-wrap .btn {
  border-radius: 30px;
  font-size: 0.85rem;
  padding: 4px 14px;
  transition: all 0.3s ease;
}

.toggle-wrap .btn:hover {
  background: #ff9900;
  border-color: #ff9900;
  color: #000;
}

.toggle-wrap .btn-check:checked + .btn {
  background: #ff9900;
  color: #000;
  border-color: #ffcc00;
}

/* Price Cards (dynamic load hone wale grid ke liye) */
#priceGrid .card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  text-align: center;
  padding: 30px 20px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
  backdrop-filter: blur(12px);
}

#priceGrid .card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin: 10px 0;
  color: #ffcc00;
}

#priceGrid .card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

#priceGrid .card p {
  font-size: 0.95rem;
  color: #e4e4e4;
}

#priceGrid .card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 204, 0, 0.6);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

/* Buy Now Btn */
#priceGrid .card .btn {
  margin-top: 12px;
  border-radius: 30px;
  font-weight: 600;
  padding: 8px 20px;
  transition: all 0.3s ease;
}

#priceGrid .card .btn:hover {
  background: #ffcc00;
  border-color: #ffcc00;
  color: #000 !important;
}

/* ---------------- Bulk Pricing Modal ---------------- */
#bulkPricingModal .modal-content {
  background: #0d054b;
  border-radius: 18px;
  border: none;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  color: #000;
  animation: modalPop 0.4s ease;
}

#bulkPricingModal .modal-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #ffcc00;
}

#bulkPricingModal .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #fff;
  padding: 10px 14px;
}

#bulkPricingModal .form-control::placeholder {
  color: #ccc;
}

#bulkPricingModal .form-control:focus {
  border-color: #ffcc00;
  box-shadow: 0 0 8px rgba(255, 204, 0, 0.6);
}

#bulkPricingModal button[type="submit"] {
  background: #ffcc00;
  border: none;
  color: #000;
  border-radius: 30px;
  padding: 8px 20px;
  transition: all 0.3s ease;
}

#bulkPricingModal button[type="submit"]:hover {
  background: #ffdb4d;
  transform: translateY(-2px);
}

/* Modal pop animation */
@keyframes modalPop {
  0% {
    transform: scale(0.85);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 767px) {
  .pricing .section-title {
    font-size: 1.9rem;
    text-align: center;
  }
  .pricing .text-light {
    text-align: center;
  }
  .toggle-wrap {
    justify-content: center;
    margin-top: 15px;
  }
}

/* Hero Section */
.hero-section1 {
  margin-top: 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
              url("https://media.istockphoto.com/id/1480245214/photo/cameraman-shooting-with-professional-camera.jpg?s=612x612&w=0&k=20&c=YTvnP3-p_SgXL4gNdLPhGbJvm4YlHCn3wcwackhbBuM=") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 60px 20px;
}

.hero-section1 h1 {
  font-size: 3rem;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-section1 p {
  font-size: 1.25rem;
  color: #ddd;
}

.hero-section1 .btn {
  border: 2px solid #fff;
  transition: all 0.3s ease;
}

.hero-section1 .btn:hover {
  background: #ffcc00;
  color: #000;
  border-color: #ffcc00;
  transform: scale(1.05);
}

/* ↓ Scroll Down Arrow */
.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 28px;
  color: #fff;
  animation: bounce 1.8s infinite;
  cursor: pointer;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translate(-50%, 0); }
  40% { transform: translate(-50%, -12px); }
  60% { transform: translate(-50%, -6px); }
}


/* About Section */
.about-section {
      background: #f9f9f9;
  color: #222; /* Dark text */
  padding: 80px 0;
}

.about-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: #0d47a1;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.about-section h2::after {
     content: "";
    position: absolute;
    width: 60%;
    height: 3px;
    background: linear-gradient(135deg, #42a5f5, #478ed1);
    bottom: 0;
    left: 20%;
    border-radius: 50px;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  animation: fadeInUp 1.2s ease forwards;
}

.about-section ul {
  padding-left: 1rem;
  margin-top: 15px;
}

.about-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  font-weight: 500;
  transition: transform 0.3s ease, color 0.3s ease;
  color: #222;
}

.about-section ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #007bff; /* Accent for checkmark */
  font-weight: bold;
}

.about-section ul li:hover {
  color: #007bff;
  transform: translateX(5px);
}

/* Video / Image Styling */

.about-section .img-fluid {
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  width: 100%!important;
}

.about-section .img-fluid:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 767px) {
  .about-section h2 {
    font-size: 2rem;
  }
}


.faq-section {
  background: inherit; /* page bg ke saath match kare */
  color: #000;
  padding: 80px 0;
}

.faq-section h2.section-title {
     font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    color: #0d47a1;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}
.faq-section h2.section-title::after{
      content: "";
    position: absolute;
    width: 60%;
    height: 3px;
    background: linear-gradient(135deg, #42a5f5, #478ed1);
    bottom: 0;
    left: 20%;
    border-radius: 50px;
}
.faq-section .faq-box {
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  border-radius: 12px;
  transition: background 0.3s ease;
}

.faq-section .faq-box:hover {
  background: rgba(255, 255, 255, 0.1);
}

.faq-section .faq-question {
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-right: 25px;
}

.faq-section .faq-question .toggle-icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-section .faq-answer {
  font-size: 0.9rem;
  margin-top: 8px;
  display: none;
  line-height: 1.5;
}

/* Toggle FAQ */
.faq-box.active .faq-answer {
  display: block;
}
.faq-box.active .faq-question .toggle-icon {
  transform: translateY(-50%) rotate(45deg);
}

/* Image Styling */
.faq-section img {
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  width: 150%;

}
.faq-section img:hover {
   
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

/* Responsive */
@media(max-width: 991px){
  .faq-section h2.section-title {
    text-align: center;
  }
  .faq-section .faq-box {
    text-align: left;
  }
}

