body{
 font-family:var(--vs-body-font);
}
.logo-container {
    padding: 0px;
}
.btn-round{
 border-radius:var(--vs-button-radius);
}
.btn-primary{
  -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    padding: 11px 25px;
    position: relative;
    z-index: 1;
    line-height: 1.2;
    border-radius: 30px;
    border: 2px solid #3283fd;
    color: #ffffff;
    overflow: hidden;
    font-size: 15px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 500;
    -webkit-transition: all 0.4s 
ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s 
ease-in-out;
    background: #3283fd;
}


.vyugam-sln-services.glass {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 60px 20px;
  background: #fff;
  font-family: "Poppins", sans-serif;
}

.vyugam-sln-service-card {
  width: 350px;
  padding: 30px 25px;
  border-radius: 20px;
  background:linear-gradient(135deg, #00224f, #0a58ca);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}


.vyugam-sln-service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color:#fff;
}

.vyugam-sln-service-card p {
  font-size: 0.95rem;
  color: #e0e0e0;
}

/* Responsive */
@media (max-width: 768px) {
  .vyugam-sln-services.glass {
    flex-direction: column;
    align-items: center;
  }

  .vyugam-sln-service-card {
    width: 90%;
  }
}
.verticals-right {
    flex: 1.5;
    min-width: 320px;
    background:url('https://i.postimg.cc/wjWqbKC3/feature-bg.jpg');
    padding: 30px;
    border-radius: 15px;
}
.project-content {
    /* padding: 25px 22px; */
    text-align: left;
}

/*try pos*/
.ws-modern {
    background: linear-gradient(135deg, #eef2ff, #f8f9ff);
    padding: 80px 20px;
    font-family: "Poppins", sans-serif;
}

.ws-box {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.ws-left img {
    width: 400px;
    border-radius: 20px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

.ws-right h2 {
    font-size: 36px;
    color: #111;
}

.ws-desc {
    color: #555;
    margin: 12px 0 20px;
}

.ws-list span {
    display: block;
    background: white;
    padding: 12px 18px;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    font-size: 16px;
}
/* material billing*/

.ms-section {
    padding: 80px 0;
    background: #ffffff;
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: center;
}


.ms-container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    gap: 40px;
    align-items: center;
}

.ms-images {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ms-images img {
    width: 100%;
    border-radius: 18px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);

    animation: msFloat 4s ease-in-out infinite alternate;
}

.ms-images img:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes msFloat {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-12px); }
}

.ms-content {
    width: 50%;
    padding: 40px;
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);

    color: #222;
}

.ms-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.ms-sub {
    font-size: 15px;
    opacity: 0.75;
    margin-bottom: 25px;
}

.ms-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.ms-features li {
    margin-bottom: 12px;
    font-size: 16px;
    padding-left: 28px;
    line-height: 1.4;
    position: relative;
}

.ms-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #4a82ff;
    font-size: 18px;
    font-weight: 700;
}


.ms-btn {
    display: inline-block;
    padding: 12px 28px;

    background: rgba(0, 0, 0, 0.05);
    color: #222;
    text-decoration: none;
    font-weight: 600;

    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.15);
    backdrop-filter: blur(4px);

    transition: 0.3s;
}

.ms-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .ms-container {
        flex-direction: column;
        text-align: center;
    }

    .ms-images {
        width: 100%;
    }

    .ms-content {
        width: 100%;
        margin-top: 20px;
    }
}


/*bottle billing*/

.bs-section {
    padding: 80px 0;
    background: #ffffff;
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: center;
}

.bs-container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    gap: 40px;
    align-items: center;
}

.bs-images {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bs-images img {
    width: 100%;
    border-radius: 18px;
    border: 1px solid #e6e6e6;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    animation: bsFloat 4s ease-in-out infinite alternate;
}

/* Stagger floating animation */
.bs-images img:nth-child(2) { animation-delay: 0.4s; }

@keyframes bsFloat {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-12px); }
}

.bs-content {
    width: 50%;
    padding: 20px;
    border-radius: 22px;

    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(0,0,0,0.09);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.14);

    color: #222;
}

.bs-content h2 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 12px;
}

.bs-sub {
    font-size: 15px;
    opacity: 0.75;
    margin-bottom: 25px;
}


.bs-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.bs-features li {
    margin-bottom: 12px;
    font-size: 16px;
    padding-left: 28px;
    position: relative;
    line-height: 1.4;
    text-align:left;
}

.bs-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 17px;
    color: #4a82ff;
    font-weight: 700;
}

/* Final Note */
.bs-final {
    margin-top: 15px;
    font-size: 15.5px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 30px;
}

.bs-btn {
    display: inline-block;
    padding: 12px 28px;

    background: rgba(0, 0, 0, 0.05);
    color: #222;
    text-decoration: none;
    font-weight: 600;

    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.15);
    backdrop-filter: blur(6px);
    transition: 0.3s;
}

.bs-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .bs-container {
        flex-direction: column;
        text-align: center;
    }

    .bs-images {
        width: 100%;
    }

    .bs-content {
        width: 100%;
        margin-top: 20px;
    }
}

.web-services {
    background-color: #eaf3ff;
    padding: 80px 8%;
    margin-top: 70px;
}
/*site title*/
.site-name {
  font-size: 40px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
}

.site-tagline {
  font-size: 18px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  
}
p.vyugam-site-name {
    font-size: 29px;
    color: #fff;
    font-family: 'Benzo Display';
    letter-spacing: 6px;
    text-align: left;
    margin-left: -10%;
    margin-top: 4px;
}

.sticky-header .main-menu .navigation > li > a, .sticky-header .main-menu .navigation > li.dropdown > a:after
{
    color: #fff;
}

.site-tagline {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: linear-gradient(90deg, #7b5cff, #ff6b6b);
    margin-top: 8px;
    font-style: italic;
    letter-spacing: 1px;
    display:none;
}

.theme2 .header-style-three {
    position: absolute;
    background: #ffffff00;
    border-bottom: 2.5px solid #fff8f842;
   
}

.logo-img {
    margin-top: 5px;
}

.main-menu .navigation > li > a:before {
    position: absolute;
    left: 20px;
    bottom: 13px;
    height: 2px;
    width:30px !important;
    background: #fff !important;
    content: "";
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease;
}
#slider-bottom-heading-banner h3 {
    font-size: 26px;
    font-family: 'Benzo Display';
    letter-spacing: 7px;
}

/* service Card-home */
.product_list_content {
    padding: 25px;
    border: 2px solid #d0d3d4;
    margin: 10px;
    border-radius: 6px;
    background: #f8f8f8;
    min-height: 120px;
    width:350px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

/* Heading */
.product_list_content h3.list-text {
    font-size: 19px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    text-align:left;
}

/* Paragraph */
.product_list_content p {
    font-size: 15px;
    color: #555;
    line-height: 22px;
    max-width: 85%;
    text-align:left;
}

/* Icon Style Inside Card */
.product_list_content .card_icon {
    position: absolute;
    right: 18px;
    top: 42px;
    width: 45px;
    height: 45px;
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.12;            
    pointer-events: none;
    right: 39px;
}

/* Icons for each card using nth-child */
.swiper-slide:nth-child(1) .card_icon {
    background-image: url('web_icon.png'); /* Replace with your icon */
}

.swiper-slide:nth-child(2) .card_icon {
    background-image: url('mobile_icon.png');
}

.swiper-slide:nth-child(3) .card_icon {
    background-image: url('software_icon.png');
}

/* Swiper Layout */
.swiper-container.tt-testimonial-two.style-2 {
    padding: 20px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}
.swiper-wrapper {
    height: auto !important;
}
div#service-card {
    height: 200px;
}

.vs-background-shapewrap{
    width: 100%;
    height: 230px;
    left: 0;
    top: 0;
}
.page-banner-two {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 227, 212, 0.302)), to(rgba(176, 243, 241, 0.302)));
    background-image: -o-linear-gradient(right, rgba(255, 227, 212, 0.302) 0%, rgba(176, 243, 241, 0.302) 100%);
    background-image: linear-gradient(to left, rgba(255, 227, 212, 0.302) 0%, rgba(176, 243, 241, 0.302) 100%);
    padding: 120px 0 60px;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.page-banner-two {
    background-color: #c42a2b !important;
    background-image: unset;
}
.vs-background-shapewrap .shape-one {
    top: -50%;
    left: 0;
}

.vs-background-shapewrap img {
    position: absolute;
}
/*service code-mobile responsive*/
@media (max-width: 768px) {

  /* Card Layout */
  .product_list_content {
      width: 100%;
      min-height: auto;
      padding: 20px;
      margin: 10px 0;
  }

  .product_list_content h3.list-text {
      font-size: 17px;
      margin-bottom: 8px;
  }

  .product_list_content p {
      font-size: 14px;
      max-width: 100%;
      line-height: 20px;
  }

  /* Icon reposition */
  .product_list_content .card_icon {
      width: 35px;
      height: 35px;
      right: 15px;
      top: 30px;
      opacity: 0.15;
  }

  /* Swiper */
  .swiper-slide {
      padding: 0 10px;
  }

  .swiper-container.tt-testimonial-two.style-2 {
      padding: 10px 0;
  }

  /* Banner Responsive */
  .page-banner-two {
      padding: 80px 0 40px;
  }

  /* Shape background */
  .vs-background-shapewrap {
      height: 150px;
  }

  .vs-background-shapewrap .shape-one {
      top: -30%;
  }

  .vs-background-shapewrap img {
      width: 120%;
      left: -10%;
  }

  /* Card container fixed height issue */
  div#service-card {
      height: auto !important;
  }
}


/* Extra Small Screens */
@media (max-width: 480px) {

  .product_list_content {
      padding: 18px;
  }

  .product_list_content h3.list-text {
      font-size: 16px;
  }

  .product_list_content p {
      font-size: 13px;
  }

  .product_list_content .card_icon {
      width: 30px;
      height: 30px;
      top: 28px;
      right: 12px;
  }
p.vyugam-site-name {
    margin-left: 29% ! important;
}
 p.vyugam-site-name {
        font-size: 20px;
        color: #000000;
        font-family: 'Benzo Display';
        letter-spacing: 3px;
        text-align: left;
        margin-left: -10%;
        Top: 11px;
        width: 100%;
        position: absolute;
        margin-top: 4px;
    }
    .mobile-header {
        padding: 2px 6px 15px 4px;
    }
.mobile-header .nav-outer {
    position: absolute;
    top: 8px;
    right: 11px;
    float: right;
}

  .page-banner-two {
      padding: 70px 0 30px;
  }
}
.mobile-header .nav-outer {
    position: absolute;
    top: 8px;
    right: 11px;
    float: right;
}
/*verticals*/

.main-section-container {
    font-family: 'Arial', sans-serif;
    display: flex;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

/* --- Left Info Panel Styling --- */
.info-panel {
    flex: 0 0 350px; 
    padding: 20px 40px 20px 0;
    margin-right: 40px;
}

.panel-heading {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-align: left;
}

.panel-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.satisfaction-rate {
    margin: 40px 0;
    text-align: left;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

/* New CSS for the image tag */
.rate-image {
    width: 30px; 
    height: 30px;
    object-fit: contain;
}

.percentage {
    font-size: 30px;
    font-weight: 300;
    color: #333;
    margin-top: 5px;
    margin-bottom: 5px;
}

.label {
    font-size: 16px;
    color: #777;
    margin-top: 0;
}

/* Styling for the anchor tag button */
.start-project-btn {
    background-color: #1e4599; 
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s;
    width: 100%; 
    text-decoration: none; 
    display: block; 
    text-align: center; 
}

.start-project-btn:hover {
    background-color: #15347a;
}

/* --- Right Verticals List Styling --- */
.verticals-list-wrapper {
    flex-grow: 1;
   background:url('https://vyugamsite.vyugamgroup.com//uploads/file/feature-bg.jpg');
}

.list-heading {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 25px;
}

.columns-container {
    display: flex;
    gap: 30px;
}

.column {
    flex: 1; 
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.vertical-item {
    background-color: #002d7b;
    color: white;
    padding: 18px 25px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    transition: transform 0.2s;
}

.vertical-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.checkmark {
    font-size: 18px;
    margin-right: 15px;
    color: white;
}

/* --- Responsiveness --- */
@media (max-width: 992px) {
    .main-section-container {
        flex-direction: column;
    }
    
    .info-panel {
        flex: auto;
        padding: 0 0 40px 0;
        margin-right: 0;
    }
    
    .columns-container {
        flex-direction: column;
        gap: 15px;
    }

    .list-heading {
        text-align: center;
    }
}


/*footer*/
.main-footer.style-two .copyright-text{
    border-top: none;
}
.btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: #3283fd;
    color: #fff;
    transition: color 0.3s ease;
}

/* White background layer */
.btn-primary::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0%;
    background: #ffffff;
    z-index: -1;
    transition: height 0.4s ease-in-out;
}

/* Hover – white background rises up */
.btn-primary:hover::before {
    height: 100%;
}

/* Change text color to dark when background becomes white */
.btn-primary:hover {
    color: #000;
}
.btn-primary {
    border: 2px solid #fff;
}

.copyright-text.text-center{
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    visibility: visible;
    animation-delay: 1.1s;
    animation-name: fadeIn;
    background-color: #002e7c;
}

.main-footer.style-two .copyright-text{
    border-top: none;
    color: #fff;
}
.main-footer .copyright-text a {
    display: inline-block;
    color: #fff;
}
.container.pr h1{
 color:#fff;
}
.page-breadcrumb li a {
    color:#fff;
}
.page-breadcrumb li:after {
    color: #fff;
}
.page-breadcrumb li {
    color:#fff;
}
.page-title-wrapper.text-left h1{
  color:#fff !important;
}
.sticky-header {
    background: #002e7c;
}
.vyugam-content h2 {
    font-weight: 600;
}
.header-style-three .contact-list li i, .header-style-three .contact-list li, .header-style-three .contact-list li a, .header-style-three .search-box .search-btn, .header-style-three .service_wrapper h4, .header-style-three .service_wrapper p, .header-style-three .main-menu .navigation > li.dropdown > a:after, .header-style-three .main-menu .navigation > li > a {
    color: #fff;
}
/*home btn*/
.read-more-btn {
    display: inline-block;
    padding: 10px 34px;
    background-color: #002266;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 500;
    position: relative;        
    overflow: hidden;          
    z-index: 1;
    transition: color 0.3s ease;
    border:2px solid #002266;
}

/* the white cover layer */
.read-more-btn::before {
    content: "";
    position: absolute;
    top: -100%;                
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 40px;       
    z-index: -1;
    transition: top 0.4s ease-in-out;
}

.read-more-btn:hover::before {
    top: 0;
}

.read-more-btn:hover {
    color: #002266;
}
.subhead {
    color: #fff;
    font-size: 21px;
    font-weight: 500;
    max-width: 700px;
    margin: 10px 0 19px 0;
}
.main-menu .navigation li.current a span {
  color:#fff;
}
.main-menu .navigation li.dropdown li.current a span {
  color:var(--vs-primary-color);
}

.icon-wrapper {
    background:none;
}
.icon-wrapper img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    margin-right: 300px;
}
/*recent wrks*/
/* Mobile Responsive */
@media (max-width: 768px) {

  .vyugam-carousel {
    flex-direction: column;         
    text-align: center;
    padding: 20px;
    gap: 20px;
  }

  .vyugam-content {
    max-width: 100%;
  }

  .vyugam-content h2 {
    font-size: 26px;                
  }

  .vyugam-content p {
    font-size: 14px;
    line-height: 1.6;
    padding: 0 10px;
  }

  .vyugam-slider {
    max-width: 100%;
  }

  .vyugam-slides img {
    width: 90%;                     
    height: 260px;                  
    border-radius: 15px;
    margin: 0 auto;
    display: block;                 
  }
}

/* Extra Small Screens */
@media (max-width: 480px) {

  .vyugam-content h2 {
    font-size: 22px;
  }

  .vyugam-content p {
    font-size: 13px;
    padding: 0 5px;
    text-align: left;
  }

  .vyugam-slides img {
    width: 100%;
    height: 220px;
  }
}
/*tools*/
@media (max-width: 768px) {

  .main-container {
      flex-direction: column;        
      height: auto;                  
      padding: 20px 10px;
      gap: 20px;
  }

  .left-section, 
  .right-section {
      flex-basis: 100%;
      width: 100%;
      padding: 0;
      justify-content: center;
      align-items: center;
      text-align: center;
  }

  .right-section {
      padding-right: 0;              
  }

  .wing-image {
      max-width: 80%;                
      height: auto;
  }

  .tools-image {
      max-width: 90%;                
      height: auto;
  }

  .image-placeholder {
      width: 100%;
      height: auto;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  
  .wing-image {
      max-width: 70%;
  }

  .tools-image {
      max-width: 85%;
  }
}

.laurel img {
    width: 152px;
    max-width: 100%;
    margin-right: 235px;
}
.title {
    font-size: 50px;
    font-weight: 700;
}
.subtitle {
    font-size: 18px;
    color: #4f5158;
    margin-bottom: 31px;
}
.phone-number {
  font-size: 30px;
  font-weight: 700;
  color: #000;
  margin-bottom: 25px;
  align-items: center;
  gap: 10px;  
}

/* Phone Icon Style */
.phone-number .phone-icon {
  width: 34px;
  height: 29px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .phone-number {
    font-size: 26px;
    gap: 8px;
  }
  .phone-number .phone-icon {
    width: 30px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  .phone-number {
    font-size: 22px;
    gap: 6px;
  }
  .phone-number .phone-icon {
    width: 26px;
    height: 22px;
  }
}
.get-project-section {
    position: relative;
    text-align: center;
    padding: 50px 50px;
    overflow: hidden;
}
/*portfolio - pj*/
.portfolio-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #eef2f7, #d9e4f3);
   
}

.pj-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.pj-titles {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2em;
    font-weight: 800;
    color: #1a1f36;
    letter-spacing: 1px;
}

/* Grid Layout */
.pj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

/* GLASS EFFECT CARD */
.pj-card {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.45);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: 0.4s ease;
}

.pj-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15);
}

/* Image Area */
.pj-img {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.pj-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Date Tag */
.pj-date-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 38, 105, 0.8);
    padding: 6px 12px;
    color: #fff;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    display: none;
}

.pj-year {
    font-size: 1.1em;
    font-weight: 700;
}

.pj-month {
    font-size: 0.8em;
    text-transform: uppercase;
}

/* Content */
.pj-content {
    padding: 22px;
}

.pj-category {
    font-size: 0.9em;
    font-weight: 700;
    color: #005be8;
    margin-bottom: 6px;
}

.pj-content h3 {
    font-size: 1.5em;
    font-weight: 800;
    margin-bottom: 10px;
    color: #1a1f36;
}

.pj-content p {
    color: #4a4f60;
    font-size: 1em;
    line-height: 1.5;
    text-align: left;
}


/*weighing scale*/
/* ===== SECTION WITH PLAIN WHITE BACKGROUND ===== */
.ws-glass-section {
    padding: 80px 0;
    background: #ffffff;    
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: center;
}

/* ===== MAIN CONTAINER ===== */
.glass-container {
    display: flex;
    width: 90%;
    max-width: 1200px;
    gap: 40px;
    align-items: center;
}

/* ===== LEFT — STACKED IMAGES ===== */
.glass-images {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.glass-images img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    animation: floatImg 4s ease-in-out infinite alternate;
    border: 1px solid #e6e6e6;
}

/* Floating animation */
@keyframes floatImg {
    0%   { transform: translateY(0); }
    100% { transform: translateY(-12px); }
}

.glass-images img:nth-child(2) { animation-delay: 0.6s; }
.glass-images img:nth-child(3) { animation-delay: 1.2s; }

/* ===== RIGHT — GLASS CONTENT CARD ===== */
.glass-content {
    width: 50%;
    padding: 40px;
    border-radius: 20px;

    /* Frosted glass but subtle (white version) */
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

    color: #222;
}

/* ===== TITLES & TEXT ===== */
.glass-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.glass-sub {
    opacity: 0.7;
    margin-bottom: 25px;
    font-size: 15px;
}

/* ===== FEATURE LIST ===== */
.glass-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.glass-features li {
    margin-bottom: 12px;
    font-size: 16px;
    padding-left: 25px;
    position: relative;
}

.glass-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #4a82ff;  /* Soft blue tick */
    font-weight: bold;
}

/* ===== BUTTON ===== */
.glass-btn {
    display: inline-block;
    padding: 12px 28px;

    background: rgba(0, 0, 0, 0.05);
    color: #222;
    text-decoration: none;
    font-weight: 600;

    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.15);
    backdrop-filter: blur(6px);
    transition: 0.3s;
}

.glass-btn:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .glass-container {
        flex-direction: column;
        text-align: center;
    }

    .glass-images {
        width: 100%;
    }

    .glass-content {
        width: 100%;
        margin-top: 20px;
    }
}

/*material billing*/

.ms-section {
    padding: 60px 0;
}

.ms-container {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    background: rgba(255, 255, 255, 0.45);
    padding:0px;
    border-radius: 20px;
    backdrop-filter: blur(12px);

}

.ms-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ms-images img {
    width: 100%;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.ms-content {
    flex: 1;
}

.ms-content h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.ms-sub {
    color: #555;
    margin-bottom: 20px;
}

.ms-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.ms-features li {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #222;
}




/*bottle billing*/
/* --- Global & Layout Styles --- */
.bottle-product-showcase-section {
    padding: 60px 0;
    background-color: #f7f9fb; 
    font-family: 'Helvetica Neue', Arial, sans-serif;
    display: flex;
    justify-content: center;
}

.bottle-showcase-container {
    width: 95%;
    max-width: 1000px; 
    margin: 0 auto;
    text-align: center;
}

/* --- Header Styling --- */
.bottle-content-header {
    margin-bottom: 40px;
}

.bottle-showcase-title {
    font-size: 2.5em;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 10px;
}

.bottle-showcase-subtitle {
    font-size: 1.1em;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* --- Split Wrapper (The main two-column container) --- */
.bottle-split-wrapper {
    display: flex;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: left;
}

/* --- Column Styling --- */
.bottle-split-column {
    padding: 40px;
    flex: 1; 
}

/* Left Column: Image */
.bottle-split-image {
    background-color: #eef2f6; 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 550px; 
}

.bottle-split-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Right Column: Details */
.bottle-split-details {
    padding: 40px;
}

.bottle-features-title {
    font-size: 1.4em;
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid #eef2f6;
    padding-bottom: 5px;
}

/* --- Feature List Styling --- */
.bottle-feature-list {
    list-style: none; 
    padding-left: 0;
    margin-bottom: 25px;
}

.bottle-feature-list li {
    font-size: 1em;
    color: #444;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 25px; 
    position: relative;
}

/* Custom Checkmark Icon */
.bottle-feature-list li::before {
    content: '✓'; 
    color: #007bff; 
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.bottle-final-statement {
    font-size: 1.1em;
    color: #333;
    font-weight: 500;
    margin-bottom: 30px;
}

/* --- CTA Button Styling --- */
.bottle-cta-button {
    display: inline-block;
    padding: 12px 25px;
    background-color:#002e7c; 
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.bottle-cta-button:hover {
    background-color: #0056b3;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .bottle-split-wrapper {
        flex-direction: column; 
    }

    .bottle-split-column {
        padding: 30px;
    }

    .bottle-split-image {
        min-height: 300px;
    }
}
/*brand */
#brands .customer-carousel {
    width: 100%;
    padding: 40px 0;
    text-align: center;
    background: #f7f9fb;
    margin-bottom: 30px;
    overflow: hidden; /* Add this to parent */
}

#brands .brand {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #184783, #002e7c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#brands .carousel-row {
    overflow: hidden;
    white-space: nowrap;
    margin: 25px 0;
    position: relative;
    width: 100%;
}

#brands .carousel-track {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    width: max-content; /* Important: let it expand */
}

#brands .images-container {
    display: inline-flex;
    width: 250px; /* Reduced for better fit */
    height: 90px;
    flex-shrink: 0; /* Prevent shrinking */
    justify-content: center;
    align-items: center;
}

#brands .images-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    background-color:#fff;
}

/* Animation keyframes */
@keyframes slide-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes slide-right {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Top row → moves left */
.left-to-right .carousel-track {
    animation: slide-left 30s linear infinite;
}

/* Bottom row → moves right */
.right-to-left .carousel-track {
    animation: slide-right 30s linear infinite;
}

/* Pause on hover (optional) */
.carousel-row:hover .carousel-track {
    animation-play-state: paused;
}
/*web tools*/
.tech-section {
  padding: 60px 20px;
  background: #ffffff;
}

.tech-container {
  max-width: 1200px;
  margin: auto;
}

.tech-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
}

/* Grid Layout */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
}

/* Card Style */
.tech-box {
  background: #f4f7fb;
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover effect */
.tech-box:hover {
  background: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Image container fix */
.tech-box figure {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}

/* Icon size */
.tech-box img {
  max-width: 45px;
  max-height: 45px;
  object-fit: contain;
}

/* Text */
.tech-box p {
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #444;
}

/*web projects*/
/* Section title */
.projects-section {
    width: 100%;
    padding: 40px 0;
}

.projects-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
    color: #222;
}

/* Grid layout */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Image container */
.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 240px;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

/* Zoom on hover */
.project-item:hover img {
    transform: scale(1.12);
}

/* FULL overlay */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    color: #fff;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    transition: opacity .35s ease-in-out;
    letter-spacing: -0.016em;
}

/* Show overlay on hover */
.project-item:hover .project-overlay {
    opacity: 1;
}

/* Overlay text */
.project-overlay h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
}

.project-overlay p {
    margin: 10px 0 18px;
    font-size: 15px;
    line-height: 1.4;
}

/* Button */
.project-overlay a {
    background: #fff;
    color: #000;
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: background .3s ease;
    letter-spacing: -0.016em;
}
/* Tablet (≤ 992px) */
@media (max-width: 992px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .project-item {
        height: 220px;
    }

    .project-overlay h3 {
        font-size: 20px;
    }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
    .projects-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .project-item {
        height: 200px;
    }

    .project-overlay h3 {
        font-size: 19px;
    }

    .project-overlay p {
        font-size: 14px;
    }

    .project-overlay a {
        padding: 7px 18px;
        font-size: 14px;
    }
}

/* Very Small Mobile (≤ 480px) */
@media (max-width: 480px) {
    .project-item {
        height: 170px;
    }

    .project-overlay h3 {
        font-size: 17px;
    }

    .project-overlay p {
        font-size: 13px;
    }
}
.web-content li::before {
    content: '→';
    color: #002e7c;
}
.btn-web {
    background-color: #002e7c;
    color: #fff;
    box-shadow:none;
}
#brands .customer-carousel img{
      border-radius: 10px;
}
h2.widget-title {
    text-align: left;
}

.text-content h2 {
    font-size:30px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 20px;
    text-align: left;
}
.vertical-text {
    right: 50px;
    top: 65%;
}

.vyugam-content h2,.text-content h2,.vertical-text,h2.tm-title,h2.panel-heading,.brand {
    font-size: 2em ! important;
}
@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1195px;
    }
}
p.vyugam-site-name {
    margin-left: -5%;
}
.theme2 .main-slider .carousel-caption {
    left: 12%;
}
.app-img img {
    width: 100%;
    height: 246px;
    object-fit: cover;
    transition: 0.5s ease;
}
.vyugam-content h2{
  text-align:left;
  font-size: 1.9em !important;
}

/*exam portal*/
.online-exam-hub {
    display: flex;
    max-width: 1100px;
    margin: 60px auto;
    background-color: #f7f7ff;
    min-height: 480px;
    overflow: hidden;
}

/* --- Left Content Area --- */
.contents-container {
    flex: 1; 
    padding: 70px 80px 70px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #12122b;
}

.exam-tag {
    background-color: #e6e6ff; 
    color:#1f1f45;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 700;
    margin-bottom: 25px;
    width: fit-content;
    letter-spacing: 0.5px;
}

.headline {
    font-size:25px;
    font-weight: 600;
    line-height: 1.15;
   
    
}

.highlight {
    color:#0d3983; 
    display: block; 
}

.cta-button {
    background-color: transparent;
    color: #12122b; 
    border: 2px solid #5c47d6; 
    padding: 16px 35px;
    font-size: 1.05em;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.cta-button:hover {
    background-color: #5c47d6;
    color: #ffffff;
}

/* --- Right Image Area with Curve --- */
.image-container {
    flex: 1; 
    position: relative;
    background-color: #1f1f45; 
    display: flex;
    align-items: center; 
    justify-content: center;
}

.image-container::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -150px; 
    width: 250px;
    background-color: #f7f7ff; 
    
    border-top-right-radius: 50%;
    border-bottom-right-radius: 50%;
    z-index: 1;
}

.image-container img {
    position: relative;
    z-index: 2; 
    width: 100%;
    height: 100%;
    object-fit: cover; 
}
.cta-anchor {
    /* Layout and Display */
    display: inline-block; 
    padding: 16px 35px;
    width: fit-content;
    font-size: 1.05em;
    font-weight: 700;
    text-decoration: none; 
    
    /* Appearance */
    background-color: transparent;
    color: #12122b; 
    border: 2px solid #5c47d6; 
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover Effect */
.cta-anchor:hover {
    background-color: #5c47d6; 
    color: #ffffff; 
}
/*exam card*/
.exam-section {
    width: 100%;
    padding: 60px 0;
    background: #fff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.exam-title {
    font-size: 34px;
    color: #0c1b4d;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.4;
}

.exam-grid {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.exam-card {
    background: #ffffff;
    padding: 30px;
    border: 1px solid #e4e9f2;
    border-radius: 14px;
    text-align: left;
    transition: all .3s ease;
}

.exam-card:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.exam-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

/* Title */
.exam-card h3 {
    font-size: 20px;
    color: #0c1b4d;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Description text */
.exam-card p {
    font-size: 15px;
    color: #5a6275;
    line-height: 1.7;
    text-align: left !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .exam-grid {
        grid-template-columns: 1fr;
    }
}
/*exam prdts*/
.square-showcase-section {
    padding: 60px 0;
    background: #fff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.square-title {
    font-size: 32px;
    font-weight: 700;
    color: #0c1b4d;
    margin-bottom: 40px;
}

/* Grid Layout */
.square-grid {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Square Card Box */
.square-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7ec;
    padding: 12px;
    text-align: center;
    transition: 0.3s ease;
    
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Hover Effect */
.square-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.10);
    transform: translateY(-4px);
}

/* Image */
.square-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Title */
.square-card h4 {
    margin-top: 12px;
    font-size: 16px;
    color: #0c1b4d;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
    .square-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .square-grid {
        grid-template-columns: 1fr;
    }
}
/*exam features*/
/* Section */
.exam-feature-section {
    padding: 60px 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

/* Title */
.exam-feature-title {
    font-size: 32px;
    color: #0f1a3c;
    font-weight: 700;
    margin-bottom: 50px;
}

/* Grid layout */
.exam-feature-grid {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Feature Card */
.exam-feature-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s ease;
}

.exam-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 12px 26px rgba(0,0,0,0.12);
}

/* Icon Circle */
.feature-icon {
    width: 70px;
    height: 70px;
    background: #eef0ff;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

/* Card Title */
.exam-feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a44;
    margin-bottom: 12px;
}

/* Paragraph */
.exam-feature-card p {
    font-size: 14px;
    color: #47516b;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .exam-feature-grid {
        grid-template-columns: 1fr;
    }
}
.web-development-image img {
  max-width: 100%;
  box-shadow:none;
}
.stats-grid-wrapper{
    background-color: #0a245a00;
}
.classic-image img {
     box-shadow:none; 
}
/* FQA MB*/
.faq-wrapper {
            width: 100%;
            max-width: 1200px;
            padding: 20px;
        }

        
        .faq-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .support-label {
            color: #002e7c;
            margin-top: 20px;
            font-weight: 600;
            margin-bottom: 5px;
            text-transform: uppercase;
            font-size: 0.9rem;
        }

        .faq-header h1 {
            font-size: 3em;
            font-weight: 700;
            color: #333;
            margin-top: 0;
            margin-bottom: 20px;
        }

        .faq-header p {
            color: #666;
            font-size: 1.1em;
            max-width: 700px;
            margin: 0 auto;
        }


        details {
            background: #fff;
            border-radius: 12px;
            margin-bottom: 15px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(0, 51, 102, 0.1); 
        }

        summary {
            background: #003366;
            color: #fff;
            padding: 18px 25px; 
            cursor: pointer;
            font-weight: 600;
            font-size: 1.05rem; 
            display: flex;
            justify-content: space-between;
            align-items: center;
            list-style: none;
        }

        summary::-webkit-details-marker {
            display: none;
        }

        /* Custom Accordion Icon (Right Arrow) */
        summary::after {
            content: "▶";
            font-size: 1rem;
            transition: transform 0.3s ease;
            margin-left: 10px;
        }

        details[open] summary::after {
            transform: rotate(90deg); 
        }

        details[open] summary {
            background: #004b8a; 
        }

        .accordion-content {
            padding: 25px;
            background: #fff;
            animation: fadeIn 0.4s ease;
            color: #555;
            line-height: 1.6;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        /* Grid Layout for FAQ Columns */
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 20px;
        }

       
        /* Responsive Design */
        @media (max-width: 768px) {
            .faq-grid {
                grid-template-columns: 1fr; 
            }
            .faq-header h1 {
                font-size: 2.5em;
            }
        }
.faq-container {
            width: 100%;
            max-width: 1200px;
            padding: 20px;
        }
.faq-content {
    padding: 15px;
    font-size: 15px;
}
/*sft development*/
.vs-section {
    padding: 60px 0;
    background: #fff;
    font-family: "Poppins", Arial, sans-serif;
}

.vs-container {
    width: 90%;
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* Left Image box */
.vs-image-box {
    flex: 1 1 45%;
    background: #d9d9d9;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.vs-image-box img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

/* Right content */
.vs-content {
    flex: 1 1 50%;
}

.vs-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
    line-height: 1.25;
}

.vs-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 25px 0 10px;
    color: #222;
}

.vs-content p {
    font-size: 16px;
    line-height: 1.65;
    color: #555;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .vs-container {
        flex-direction: column;
        text-align: left;
    }

    .vs-image-box {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .vs-content h2 {
        font-size: 28px;
    }
    .vs-content p {
        font-size: 15px;
    }
}
/*cert cmpy*/
.cert-section {
    width: 100%;
    padding: 60px 0;
    text-align: center;
    font-family: "Poppins", Arial, sans-serif;
}

/* Heading */
.cert-title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
}

/* Blue Underline Style */
.cert-underline {
    width: 120px;
    height: 4px;
    background: #1a73e8;
    margin: 10px auto 40px;
    border-radius: 10px;
}

/* Grid Layout */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
}

/* Certification Card */
.cert-card {
    background: #fff;
    border-radius: 14px;
    padding: 25px 15px;
    text-align: center;
    border: 1px solid #e4e4e4;
    box-shadow: 0 4px 8px rgba(0,0,0,0.07);
    transition: transform .3s ease, box-shadow .3s ease;
}

.cert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.cert-card img {
    width: 75px;
    height: auto;
    margin-bottom: 15px;
}

.cert-card p {
    font-size: 15px;
    font-weight:400;
    color: #333;
    line-height: 1.4;
}

/* Tablet */
@media (max-width: 992px) {
    .cert-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .cert-title {
        font-size: 26px;
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cert-card img {
        width: 60px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .cert-grid {
        grid-template-columns: 1fr;
    }
}
/*software deve*/
.software-deve-section {
    text-align: center;
    
    font-family: "Poppins", Arial, sans-serif;
}

.software-deve-section h2 {
    font-size: 30px;
    font-weight: 700;
    color: #222;
}

.software-deve-underline {
    width: 120px;
    height: 4px;
    background: #1a73e8;
    margin: 10px auto 40px;
    border-radius: 10px;
}

/* Grid Layout */
.software-deve-grid {
    width: 90%;
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* Each Card */
.software-deve-item {
    position: relative;
    overflow: hidden;
    height: 200px;
    border-radius: 12px;
}

.software-deve-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

/* Hover Zoom */
.software-deve-item:hover img {
    transform: scale(1.12);
}

/* Overlay */
.software-deve-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
}

/* Responsive */
@media (max-width: 992px) {
    .software-deve-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .software-deve-item {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .software-deve-grid {
        grid-template-columns: 1fr;
    }
    .software-deve-item {
        height: 220px;
    }
    .software-deve-section h2 {
        font-size: 24px;
    }
}
/*sales growth*/
/* Section spacing */
.sales-growth-section {
    text-align: center;
    padding: 30px 10px;
    font-family: 'Poppins', sans-serif;
}

/* Title */
.sg-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: left;
}

/* Blue underline */
.sg-underline {
    width: 120px;
    height: 4px;
    background: #2a85ff;
    margin: 0 auto 25px auto;
    border-radius: 4px;
}

/* Description */
.sg-description {
    max-width: 900px;
    margin: 0 auto 40px auto;
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

/* Card wrapper */
.sg-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    text-align: left;
}

/* Individual card */
.sg-card {
    width: 300px;
    padding: 40px 20px;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s;
}

/* Hover effect */
.sg-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

/* Percentage text */
.sg-card h1 {
    font-size: 48px;
    color: #0073ff;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Card subtitle */
.sg-card p {
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

/* Soft gradient backgrounds */
.sg-orange {
    background: linear-gradient(to bottom, #ffe9d6, #fff);
}

.sg-blue {
    background: linear-gradient(to bottom, #dffcff, #fff);
}

.sg-purple {
    background: linear-gradient(to bottom, #efe6ff, #fff);
}
/*sapdevelopment*/
.sap-impl-section {
    padding: 20px 20px;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
}

.sap-impl-container {
    max-width: 1200px;   /* limits total width */
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* LEFT SIDE */
.sap-impl-left {
    flex: 1;
    max-width: 540px;    /* reduces text width */
    min-width: 320px;
}

.sap-title {
    font-size: 27px;
    font-weight: 700;
    color: #000;
    display: inline-block;
    border-radius: 4px;
    margin-bottom: 20px;
    text-align: left;
}

.sap-impl-left p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #444;
    text-align: left;
}

/* QUOTE BLOCK */
.sap-quote {
    margin-top: 20px;
    padding: 18px 22px;
    font-size: 17px;
    line-height: 1.7;
    background: #f1f6ff;
    border-left: 6px solid #287cff;
    border-radius: 6px;
}

.quote-mark {
    font-size: 34px;
    color: #287cff;
    margin-right: 10px;
}

/* RIGHT IMAGE */
.sap-impl-right img {
    width: 100%;
    max-width: 520px; /* reduces image size */
    border-radius: 8px;
    object-fit: cover;
}
.partner-content-left h2 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #000;
    text-align:left;
}
/*sap service*/
.sap-services-section {
    padding: 60px 30px;
    font-family: "Poppins", sans-serif;
    display: flex;
    justify-content: center;
}

.sap-services-container {
    max-width: 1300px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD STYLE */
.sap-card {
    background: white;
    padding: 40px 30px;
    border-radius: 30px 0 30px 0; 
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.06);
}

.sap-card:hover {
    transform: translateY(-6px);
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
}

/* ICON */
.sap-icon img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

/* TITLE */
.sap-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* TEXT */
.sap-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    min-height: 120px;
}

/* MORE LINK */
.sap-card a {
    margin-top: 10px;
    display: inline-block;
    font-weight: 600;
    color: #0056ff;
    text-decoration: none;
    transition: 0.2s;
}

.sap-card a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .sap-services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .sap-services-container {
        grid-template-columns: 1fr;
    }
}

/*sap benefits*/
.sap-benefits-section {
    padding: 60px 0;
    background: #f8f9fb;
}

.sap-benefits-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0 20px;
}

.sap-benefits-image img {
    width: 100%;
    max-width: 480px;
    border-radius: 14px;
    
}

.sap-benefits-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #111;
}

.sap-benefits-content ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.sap-benefits-content li {
    font-size: 16px;
    margin-bottom: 14px;
    line-height: 1.6;
    position: relative;
    padding-left: 22px;
}

.sap-benefits-content li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #0b5ed7;
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sap-benefits-container {
        flex-direction: column;
        text-align: center;
    }

    .sap-benefits-content li {
        padding-left: 0;
    }

    .sap-benefits-content li::before {
        display: none;
    }
}


.milestone-section {
    padding: 30px 10%;
}
/*dm*/

/* ===== SEO SECTION ===== */
.seo-service-section {
    padding: 50px 20px;
    background: #ffffff;
}

.seo-card {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Image */
.seo-image {
    flex: 1;
    opacity: 0;
    animation: seoSlideLeft 1s ease-out forwards;
}

.seo-image img {
    max-width: 100%;
    width: 420px;
}

/* Content */
.seo-content {
    flex: 1.2;
    opacity: 0;
    animation: seoSlideRight 1s ease-out forwards;
    animation-delay: 0.2s;
}

.seo-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: #0a0f4f;
    margin-bottom: 15px;
}

.seo-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.seo-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0a0f4f;
}

/* List */
.seo-content ul {
    padding-left: 18px;
}

.seo-content li {
    margin-bottom: 12px;
    line-height: 1.7;
    color: #555;
}

.seo-content li strong {
    color: #222;
}

/* ===== ANIMATIONS ===== */
@keyframes seoSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes seoSlideRight {
    from {
        opacity: 0;
        transform: translateX(80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .seo-card {
        flex-direction: column;
        text-align: center;
    }

    .seo-content ul {
        text-align: left;
    }

    .seo-image img {
        width: 100%;
        max-width: 320px;
        margin-bottom: 30px;
    }
}

/*ppc*/
.ppc-flat-section {
    padding: 60px 20px;
    background: #ffffff;
}

/* Layout */
.ppc-flat-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Content */
.ppc-flat-content {
    flex: 1.2;
}

.ppc-flat-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: #0a0f4f;
    margin-bottom: 15px;
}

.ppc-flat-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.ppc-flat-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0a0f4f;
    margin-bottom: 15px;
}

.ppc-flat-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.ppc-flat-content li {
    margin-bottom: 14px;
    line-height: 1.6;
    color: #555;
}

.ppc-flat-footer {
    font-weight: 500;
    color: #222;
}

/* Image */
.ppc-flat-image {
    flex: 1;
    text-align: center;
}

.ppc-flat-image img {
    max-width: 100%;
    width: 420px;
}

/* Responsive */
@media (max-width: 900px) {
    .ppc-flat-container {
        flex-direction: column-reverse;
        text-align: center;
    }

    .ppc-flat-content ul {
        text-align: left;
        padding-left: 0;
    }
}

/*smm*/

/* ===== SMM SERVICE SECTION ===== */
.smm-service-section {
    padding: 50px 20px;
    background: #ffffff;
}

.smm-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Image */
.smm-image {
    flex: 1;
}

.smm-image img {
    max-width: 420px;
    width: 100%;
    height: auto;
    display: block;
}

/* Content */
.smm-content {
    flex: 1.2;
}

.smm-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: #0a0f4f;
    margin-bottom: 15px;
}

.smm-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 22px;
}

.smm-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0a0f4f;
    margin-bottom: 15px;
}

.smm-content ul {
    padding-left: 18px;
    margin-bottom: 20px;
}

.smm-content li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #555;
}

.smm-content li strong {
    color: #222;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .smm-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .smm-content ul {
        text-align: left;
    }

    .smm-image img {
        max-width: 320px;
        margin-bottom: 30px;
    }
}

/*dm-sec*/

.dm-process-section {
    padding: 50px 20px;
    background: #fff;
}

.dm-process-wrapper {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

/* Left Content */
.dm-process-content {
    flex: 1.3;
}

.dm-process-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0a0f4f;
    margin-bottom: 10px;
}

.dm-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
}

/* Steps */
.dm-step {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.dm-icon {
    min-width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f5f7ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dm-icon img {
    width: 50px;
    height: auto;
}

/* Step text */
.dm-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0a0f4f;
    margin-bottom: 8px;
}

.dm-text ul {
    padding-left: 18px;
}

.dm-text li {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 6px;
}

.dm-footer-text {
    margin-top: 30px;
    font-weight: 600;
    color: #222;
}

/* Right Image */
.dm-process-image {
    flex: 1;
    text-align: center;
}

.dm-process-image img {
    max-width: 420px;
    width: 100%;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .dm-process-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .dm-step {
        align-items: flex-start;
        text-align: left;
    }

    .dm-process-image img {
        max-width: 300px;
        margin-top: 40px;
    }
}
/*coming soon*/

    .coming-soon-image {
      position: relative;
      width: 100%;
      height:250px;
      background: url('https://via.placeholder.com/1920x1080') no-repeat center center/cover;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #fff;
      font-family: Arial, sans-serif;
    }

    .coming-soon-image::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      
      z-index: 1;
    }

    .coming-soon-image .content {
      position: relative;
      z-index: 2;
      padding: 20px;
    }

    .coming-soon-image h1 {
      font-size: 3rem;
      margin-bottom: 20px;
    }

    .coming-soon-image p {
      font-size: 1.5rem;
    }

    @media(max-width: 768px) {
      .coming-soon-image h1 {
        font-size: 2.5rem;
      }
      .coming-soon-image p {
        font-size: 1.2rem;
      }
    }
/*call us*/
.innovation-banner {
  width: 100%;
  padding: 20px 20px;
  background: linear-gradient(135deg, #0b3a82, #0a2f6f);
  position: relative;
  overflow: hidden;
}

/* Wave background shapes */
.innovation-banner::before,
.innovation-banner::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.innovation-banner::before {
  top: -200px;
  left: -150px;
}

.innovation-banner::after {
  bottom: -250px;
  right: -200px;
}

.banner-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.banner-content h1 {
  color: #ffffff !important;
  font-size: 2rem;
  font-weight: 700;
  max-width: 700px;
  line-height: 1.2;
}

/* Button */
.contact-btn {
  background: #ffffff;
  color: #000;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-btn:hover {
  background: #eaeaea;
  transform: translateX(5px);
  color:#000;
}

/* Responsive */
@media (max-width: 768px) {
  .banner-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .banner-content h1 {
    font-size: 2rem;
  }
}
/*mobile responsive*/

.btn-web:hover {
    background-color: #ffffff; 
    color: #0D1A3C; 
    transform: translateY(-3px); 
    box-shadow:none;
    border:1px solid #0d47a1;
}
.web-content h2 {
    text-align: left;
}
.web-section {
    background-color: #fff;
    color: #ffffff;
    padding:0px;
}

.mobile-subtitle {
    color: #000;
}

.card-title {
    font-size: 1.5rem; 
}

/*blog*/
/* Section */
.blog-content-section {
  padding: 70px 0;
}

/* Content Width (Medium-like) */
.blog-content-container {
  max-width: 720px;
  margin: auto;
  padding: 0 20px;
  font-family: Georgia, 'Times New Roman', serif;
}

/* Title */
.blog-title {
  
  font-size: 25px;
  font-weight: 500;
  line-height: 1.25;
  color: #111;
  margin-bottom: 22px;
}

/* Intro */
.blog-intro {
  font-size: 20px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 40px;
}

/* Headings */
.blog-content-container h2 {
  
  font-size: 24px;
  font-weight: 500;
  color: #111;
  margin-top: 48px;
  margin-bottom: 12px;
}

/* Paragraphs */
.blog-content-container p {
  font-size: 18px;
  line-height: 1.85;
  color: #2b2b2b;
  margin-bottom: 22px;
}

/* Quotes */
blockquote {
  margin: 42px 0;
  padding-left: 22px;
  border-left: 3px solid #ccc;
  font-style: italic;
  font-size: 18px;
  color: #555;
}

/* Mobile */
@media (max-width: 768px) {
  .blog-title {
    font-size: 28px;
  }

  .blog-content-container p {
    font-size: 16px;
  }

  .blog-intro {
    font-size: 17px;
  }
}
.lni-map-marker-5::before {
    content: "\eb4d";
    color: #002e7c;
}
.lni-telephone-1::before {
    content: "\ec07";
    color: #002e7c;
}.lni-envelope-1::before {
    content: "\eacd";
    color: #002e7c;
}
.section-title span {
    color: #000;
}
.headlines {
    font-size: 25px;
    font-weight: 600;
    line-height: 1.15;
   margin-bottom:20px;
}

/*card icons*/
/* Desktop (default) */
.card_icon svg {
    width: 99px;
    height: 80px;
}

/* Tablet */
@media (max-width: 1024px) {
    .card_icon svg {
        width: 80px;
        height: 65px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .card_icon svg {
        width: 60px;
        height: 50px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .card_icon svg {
        width: 48px;
        height: 40px;
    }
}
/*projects home*/

/* Tablet */
@media (max-width: 1024px) {
    .title {
        font-size: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .title {
        font-size: 28px;
        line-height: 1.3;
    }
}
/*portfolio*/

/* Tablet */
@media (max-width: 1024px) {
    .portfolio-title {
        font-size: 2.2rem;
        margin-bottom: 45px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .portfolio-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
        line-height: 1.3;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .portfolio-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}
/*portfolio*/
/* Desktop (default) */
.pj-titles {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2em;
    font-weight: 800;
    color: #1a1f36;
    letter-spacing: 1px;
}

/* Tablet */
@media (max-width: 1024px) {
    .pj-titles {
        font-size: 1.9em;
        margin-bottom: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .pj-titles {
        font-size: 1.6em;
        margin-bottom: 30px;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .pj-titles {
        font-size: 1.4em;
        margin-bottom: 20px;
    }
}
/*prdtcs*/
/* ================= MOBILE (<=768px) ================= */
@media (max-width: 768px) {

    .bottle-product-showcase-section {
        padding: 50px 15px;
    }

    .bottle-showcase-container {
        width: 100%;
    }

    /* Header */
    .bottle-showcase-title {
        font-size: 1.9em;
        line-height: 1.3;
    }

    .bottle-showcase-subtitle {
        font-size: 1em;
        padding: 0 10px;
    }

    /* Stack columns */
    .bottle-split-wrapper {
        flex-direction: column;
    }

    .bottle-split-column {
        padding: 25px;
    }

    .bottle-split-image {
        min-height: auto;
        padding: 20px;
    }

    .bottle-split-image img {
        max-width: 100%;
        height: auto;
    }

    /* Content */
    .bottle-features-title {
        font-size: 1.2em;
        text-align: center;
    }

    .bottle-feature-list li {
        font-size: 0.95em;
        line-height: 1.5;
    }

    .bottle-final-statement {
        font-size: 1em;
        text-align: center;
    }

    /* Button */
    .bottle-cta-button {
        width: 100%;
        text-align: center;
        padding: 14px;
    }
}

/* ================= SMALL MOBILE (<=480px) ================= */
@media (max-width: 480px) {

    .bottle-showcase-title {
        font-size: 1.6em;
    }

    .bottle-feature-list li {
        font-size: 0.9em;
    }
}
/* ================= MOBILE (<=768px) ================= */
@media (max-width: 768px) {

    .ws-glass-section {
        padding: 50px 15px;
    }

    .glass-container {
        width: 100%;
        gap: 30px;
    }

    .glass-images {
        width: 100%;
        gap: 18px;
    }

    /* Reduce animation movement on mobile */
    .glass-images img {
        animation: floatImg 5s ease-in-out infinite alternate;
    }

    .glass-content {
        padding: 25px;
        text-align: center;
    }

    .glass-content h2 {
        font-size: 24px;
    }

    .glass-sub {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .glass-features li {
        font-size: 14px;
        text-align: left;
    }

    .glass-btn {
        width: 100%;
        text-align: center;
        padding: 14px;
    }
}

/* ================= SMALL MOBILE (<=480px) ================= */
@media (max-width: 480px) {

    .glass-content h2 {
        font-size: 20px;
    }

    .glass-images img {
        border-radius: 14px;
    }

    /* Optional: disable floating animation on very small screens */
    .glass-images img {
        animation: none;
    }
}
/* ================= MOBILE (<=768px) ================= */
@media (max-width: 768px) {

    .ms-section {
        padding: 50px 15px;
    }

    .ms-container {
        width: 100%;
        gap: 30px;
    }

    .ms-images {
        width: 100%;
        gap: 18px;
    }

    /* Reduce animation movement for mobile comfort */
    .ms-images img {
        animation: msFloat 5s ease-in-out infinite alternate;
    }

    .ms-content {
        padding: 25px;
        text-align: center;
    }

    .ms-content h2 {
        font-size: 24px;
        line-height: 1.3;
    }

    .ms-sub {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .ms-features li {
        font-size: 14px;
        padding-left: 24px;
        text-align: left;
    }

    .ms-btn {
        width: 100%;
        text-align: center;
        padding: 14px;
        font-size: 15px;
    }
}

/* ================= SMALL MOBILE (<=480px) ================= */
@media (max-width: 480px) {

    .ms-content {
        padding: 20px;
        border-radius: 18px;
    }

    .ms-content h2 {
        font-size: 20px;
    }

    .ms-images img {
        border-radius: 14px;
        animation: none; /* disable float on very small screens */
    }
}
/*exam*/
/* ================= TABLET & MOBILE ================= */
@media (max-width: 992px) {

    .online-exam-hub {
        flex-direction: column;
        margin: 30px 15px;
        min-height: auto;
        border-radius: 12px;
    }

    /* LEFT CONTENT */
    .contents-container {
        padding: 40px 30px;
        text-align: center;
        align-items: center;
    }

    .exam-tag {
        margin-bottom: 18px;
        font-size: 0.85em;
    }

    .headline {
        font-size: 22px;
        line-height: 1.3;
        
    }

    .highlight {
        display: inline;
    }

    .cta-button,
    .cta-anchor {
        padding: 14px 30px;
        font-size: 1em;
    }

    /* IMAGE SECTION */
    .image-container {
        min-height: 280px;
    }

    .image-container::before {
        display: none; /* remove curve on mobile */
    }

    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 576px) {

    .contents-container {
        padding: 30px 20px;
    }

    .headline {
        font-size: 20px;
    }

    .exam-tag {
        font-size: 0.8em;
        padding: 5px 14px;
    }

    .cta-button,
    .cta-anchor {
        width: 100%;
        text-align: center;
    }

    .image-container {
        min-height: 220px;
    }
}

/*exam title*/

/* For tablets and small screens */
@media (max-width: 768px) {
    .exam-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

/* For mobile phones */
@media (max-width: 480px) {
    .exam-title {
        font-size: 22px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
}
/*web responsive*/
/* Mobile Devices */
@media (max-width: 600px) {
    .web-section {
        padding: 50px 0;
    }

    .web-container {
       
        padding: 0 16px;
    }

    .web-development-image img {
        border-radius: 6px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    }

    .web-content h2 {
        font-size: 1.9rem;
        line-height: 1.3;
    }

    .web-content p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 24px;
    }

    .web-content ul {
        gap: 12px 20px;
    }

    .web-content li {
        font-size: 0.95rem;
        padding-left: 18px;
    }

    .btn-web {
        padding: 12px 26px;
        font-size: 0.95rem;
    }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
    .web-section {
        padding: 40px 0;
    }

    .web-content h2 {
        font-size: 1.6rem;
    }

    .web-content p {
        font-size: 0.95rem;
        text-align:left;
    }

    .web-content ul {
        flex-direction: column;
        align-items: center;
    }

    .web-content li {
        width: 100%;
        max-width: 280px;
        text-align: left;
    }

    .btn-web {
        width: 100%;
        max-width: 260px;
        padding: 14px;
    }
}
.stats-header {
    background-color: #ffffff;
    padding: 10px 10px 10px;
}

/*web service*/
/* Tablet */
@media (max-width: 768px) {
    h2.web-heading {
        font-size: 30px;
        margin-left: 30px;
        margin-right: 30px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    h2.web-heading {
        font-size: 22px;
        margin-left: 16px;
        margin-right: 16px;
        margin-bottom: 20px;
        line-height: 1.3;
        text-align: center;
    }
}
.services-section {
    position: relative;
    padding: 15px 0 10px;
}
.card-description {
    text-align: left;
}
.mobile {
    padding: 60px 8%;
}

/*mobile app*/
/* Tablet */
@media (max-width: 768px) {
    .mobile-title {
        font-size: 2rem;
        letter-spacing: 0.8px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .mobile-title {
        font-size: 1.5rem;
        letter-spacing: 0.4px;
        text-align: center;
        line-height: 1.3;
    }
}
/*sftw*/
/* Mobile Devices */
@media (max-width: 600px) {
    .vs-section {
        padding: 40px 0;
    }

    .vs-container {
        width: 100%;
        padding: 0 16px;
        gap: 30px;
    }

    .vs-image-box {
        padding: 14px;
        border-radius: 10px;
    }

    .vs-content h2 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .vs-content h3 {
        font-size: 18px;
        margin: 18px 0 8px;
    }

    .vs-content p {
        font-size: 14.5px;
        line-height: 1.6;
    }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
    .vs-section {
        padding: 30px 0;
        font-size: 20px;
    }

    .vs-content h2 {
        font-size: 20px;
        text-align:left;
    }

    .vs-content h3 {
        font-size: 17px;
        text-align: left;
    }

    .vs-content p {
        font-size: 14px;
        text-align: left;
    }

    .vs-image-box {
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
    }
}
.partner-success-section {
     margin:0px; 
}
/*sap*/
/* Mobile Devices */
@media (max-width: 600px) {
    .sap-expertise-section {
        margin: 30px auto;
        padding: 0 16px;
        gap: 25px;
    }

    .content-left {
        padding-right: 0;
        text-align: center;
    }

    .content-left h1 {
        font-size: 1.6rem;
        line-height: 1.4;
        margin-bottom: 18px;
    }

    .content-left p {
        font-size: 1rem;
        line-height: 1.55;
        margin-bottom: 16px;
    }

    .image-right {
        border-radius: 8px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
    .sap-expertise-section {
        margin: 20px auto;
        padding: 0 14px;
    }

    .content-left h1 {
        font-size: 1.4rem;
        text-align: left;
    }

    .content-left p {
        font-size: 0.95rem;
        text-align: left;
    }
}
/*sap benefit*/
/* Mobile Devices */
@media (max-width: 600px) {
    .sap-benefits-section {
        padding: 40px 0;
    }

    .sap-benefits-container {
        gap: 30px;
        padding: 0 16px;
    }

    .sap-benefits-image img {
        max-width: 100%;
        border-radius: 12px;
    }

    .sap-benefits-content h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .sap-benefits-content li {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 12px;
    }
}

/* Small Mobile Phones */
@media (max-width: 480px) {
    .sap-benefits-section {
        padding: 30px 0;
    }

    .sap-benefits-content h2 {
        font-size: 22px;
    }

    .sap-benefits-content li {
        font-size: 14px;
    }
}
/*seo dm*/
/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 600px) {
    .seo-service-section {
        padding: 40px 16px;
    }

    .seo-card {
        gap: 30px;
    }

    .seo-content h2 {
        font-size: 24px;
        line-height: 1.3;
        text-align:left;
    }

    .seo-content h3 {
        font-size: 18px;
        text-align:left;
    }

    .seo-content p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 20px;
        text-align:left;
    }

    .seo-content ul {
        padding-left: 16px;
    }

    .seo-content li {
        font-size: 14.5px;
        margin-bottom: 10px;
    }

    .seo-image img {
        max-width: 280px;
    }
}

/* ===== SMALL MOBILE PHONES ===== */
@media (max-width: 480px) {
    .seo-service-section {
        padding: 30px 14px;
    }

    .seo-content h2 {
        font-size: 22px;
        text-align:left;
        
    }

    .seo-content h3 {
        font-size: 17px;
        text-align:left;
       
    }

    .seo-content p,
    .seo-content li {
        font-size: 14px;
        text-align:left;
       
    }

    .seo-image img {
        max-width: 240px;
    }
}
/*ppc*/
/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 600px) {
    .ppc-flat-section {
        padding: 30px 16px;
    }

    .ppc-flat-container {
        gap: 30px;
    }

    .ppc-flat-content h2 {
        font-size: 24px;
        line-height: 1.3;
        text-align:left;
    }

    .ppc-flat-content h3 {
        font-size: 18px;
        text-align:left;
    }

    .ppc-flat-content p {
        font-size: 15px;
        line-height: 1.6;
        text-align:left;
    }

    .ppc-flat-content li {
        font-size: 14.5px;
        margin-bottom: 10px;
        text-align:left;
    }

    .ppc-flat-footer {
        font-size: 14.5px;
    }

    .ppc-flat-image img {
        max-width: 280px;
    }
}

/* ===== SMALL MOBILE PHONES ===== */
@media (max-width: 480px) {
    .ppc-flat-section {
        padding: 25px 14px;
    }

    .ppc-flat-content h2 {
        font-size: 22px;
        text-align: left;
    }

    .ppc-flat-content h3 {
        font-size: 17px;
        text-align: left;
    }

    .ppc-flat-content p,
    .ppc-flat-content li,
    .ppc-flat-footer {
        font-size: 14px;
        
    }

    .ppc-flat-image img {
        max-width: 240px;
    }
}
/*ssm*/
/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 600px) {
    .smm-service-section {
        padding: 40px 16px;
    }

    .smm-wrapper {
        gap: 30px;
    }

    .smm-content h2 {
        font-size: 24px;
        line-height: 1.3;
        text-align:left;
    }

    .smm-content h3 {
        font-size: 18px;
        text-align:left;
    }

    .smm-content p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 18px;
        text-align:left;
    }

    .smm-content li {
        font-size: 14.5px;
        margin-bottom: 10px;
    }

    .smm-image img {
        max-width: 280px;
    }
}

/* ===== SMALL MOBILE PHONES ===== */
@media (max-width: 480px) {
    .smm-service-section {
        padding: 30px 14px;
    }

    .smm-content h2 {
        font-size: 22px;
        text-align:left;
    }

    .smm-content h3 {
        font-size: 17px;
        text-align:left;
    }

    .smm-content p,
    .smm-content li {
        font-size: 14px;
        text-align:left;
    }

    .smm-image img {
        max-width: 240px;
    }
}
/*dm sec*/
/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 600px) {
    .dm-process-section {
        padding: 40px 16px;
    }

    .dm-process-wrapper {
        gap: 30px;
    }

    .dm-process-content h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    .dm-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .dm-step {
        gap: 16px;
        margin-bottom: 25px;
    }

    .dm-icon {
        min-width: 50px;
        height: 50px;
    }

    .dm-icon img {
        width: 40px;
    }

    .dm-text h3 {
        font-size: 18px;
    }

    .dm-text li {
        font-size: 14.5px;
        margin-bottom: 5px;
    }

    .dm-footer-text {
        font-size: 15px;
        margin-top: 24px;
    }

    .dm-process-image img {
        max-width: 260px;
    }
}

/* ===== SMALL MOBILE PHONES ===== */
@media (max-width: 480px) {
    .dm-process-section {
        padding: 30px 14px;
    }

    .dm-process-content h2 {
        font-size: 22px;
    }

    .dm-subtitle {
        font-size: 14px;
        text-align:left;
    }

    .dm-step {
        flex-direction: column;
        align-items: center;
        text-align:left;
    }

    .dm-text ul {
        padding-left: 0;
    }

    .dm-process-image img {
        max-width: 230px;
        margin-top: 30px;
    }
}
/*cmpy*/
/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 600px) {
  .company-about {
    padding: 50px 6%;
  }

  .company-container {
    gap: 30px;
  }

  .company-content h5 {
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  .company-content h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .company-content p {
    font-size: 15px;
    
  }

  .company-image img {
    max-width: 320px;
    margin: 0 auto;
  }
}

/* ===== SMALL MOBILE PHONES ===== */
@media (max-width: 480px) {
  .company-about {
    padding: 40px 5%;
  }

  .company-content h2 {
    font-size: 22px;
  }

  .company-content p {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .company-image img {
    max-width: 260px;
  }
}
@media (max-width: 600px) {
    .cta-banner {
        padding: 20px 15px;
    }
}
/*home*/
.content-container {
   padding: 0px;
}
.page-breadcrumb li {
    position: relative;
    display: inline-block;
    color: rgba(0, 0, 0, 0.75);
    font-size: 15px;
    font-weight: 400;
    padding: 0 18px;
    line-height: 24px;
    text-transform: capitalize;
    margin-top: -10px;
    color:#fff !important;
}
.page-breadcrumb li {
    position: relative;
    display: inline-block;
    color: rgba(0, 0, 0, 0.75);
    font-size: 15px;
    font-weight: 400;
    padding: 0 11px;
    line-height: 24px;
    text-transform: capitalize;
    margin-top: -10px;
    color: #fff !important;
    margin-top: -5px;
}
/*call us*/
/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 600px) {
  .innovation-banner {
    padding: 30px 16px;
  }

  .innovation-banner::before,
  .innovation-banner::after {
    width: 420px;
    height: 420px;
  }

  .innovation-banner::before {
    top: -160px;
    left: -140px;
  }

  .innovation-banner::after {
    bottom: -180px;
    right: -160px;
  }

  .banner-content h1 {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .contact-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

/* ===== SMALL MOBILE PHONES ===== */
@media (max-width: 480px) {
  .innovation-banner {
    padding: 6px 9px;
  }

  .innovation-banner::before,
  .innovation-banner::after {
    width: 320px;
    height: 320px;
  }

  .banner-content h1 {
    font-size: 1.4rem;
  }

  .contact-btn {
    width: 100%;
    max-width: 240px;
    text-align: center;
  }
}
@media (max-width: 480px) {
    .page-banner-two {
        padding: 65px 0 30px;
    }
}
@media (max-width: 768px) {
    .banner-content {
        gap: 0px;
    }
}
.page-breadcrumb {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 1.05rem;
    position: absolute;
}
.title_divider {
    display:none;
    width: 60px;
    height: 4px;
    background: #ffffff00 !important;
    margin: 0 auto 18px auto;
    border-radius: 2px;
    position: absolute;
}
.card-text {
   margin-top:0px;
}
#blogs p.card-text.text-muted.mb-3 {
    display: none;
}

@media (max-width: 900px) {
    .trypos-content p {
        font-size: 1rem;
        text-align: left;
    }
}
.partner-content-left p {
    text-align: left;
}
.gallery-text p {
    text-align: left;
}
.single-blog-image{
  max-height:100% ! important;
}
/*ticket potral*/
.ticket-section {
  padding: 80px 8%;
}

.ticket-container {
  display: flex;
  align-items: center;
  gap: 60px;
  overflow: hidden;
}

/* Left Image */
.ticket-image {
  flex: 1;
}

.ticket-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 10px;
}

/* Right Content */
.ticket-content {
  flex: 1;
}

.ticket-content h2 {
  font-size: 42px;
  color: #1aa6df;
  margin-bottom: 20px;
  text-align: left;
}

.ticket-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
  text-align: left;
}

.highlight {
  color: #1aa6df;
  font-weight: 600;
}

/* Animations */
.slide-left {
  animation: slideFromLeft 4s ease forwards;
}

.slide-right {
  animation: slideFromRight 5s ease forwards;
}

@keyframes slideFromLeft {
  from {
    transform: translateX(-120px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideFromRight {
  from {
    transform: translateX(120px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .ticket-container {
    flex-direction: column;
    text-align: center;
  }
}
/*mobile responsive*/
/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

  .ticket-section {
    padding: 60px 6%;
  }

  .ticket-container {
    flex-direction: column;
    gap: 35px;
    text-align: center;
  }

  /* Image */
  .ticket-image img {
    max-width: 100%;
  }

  /* Content */
  .ticket-content h2 {
    font-size: 30px;
    text-align: center;
  }

  .ticket-content p {
    font-size: 15px;
    text-align: center;
  }

  /* Disable slide offset for smoother mobile */
  .slide-left,
  .slide-right {
    animation-duration: 1.5s;
  }
}

/* ===== EXTRA SMALL DEVICES ===== */
@media (max-width: 480px) {

  .ticket-section {
    padding: 50px 5%;
  }

  .ticket-content h2 {
    font-size: 26px;
    text-align: left;
  }

  .ticket-content p {
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
  }
}

/*portal sys*/
.portal-section {
  padding: 80px 8%;
  background: #f9fbfd;
}

/* Layout */
.portal-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  overflow: hidden;
}

/* Content */
.portal-content {
  flex: 1;
}

.portal-content h2 {
  font-size: 40px;
  color: #1aa6df;
  margin-bottom: 25px;
  text-align: left;
}

.portal-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
  text-align: left;
}

/* Image */
.portal-image {
  flex: 1;
  text-align: right;
}

.portal-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
}

/* Animations */
.slide-left {
  animation: slideFromLeft 4s ease forwards;
}

.slide-right {
  animation: slideFromRight 5s ease forwards;
}

@keyframes slideFromLeft {
  from {
    transform: translateX(-120px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideFromRight {
  from {
    transform: translateX(120px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .portal-container {
    flex-direction: column;
    text-align: center;
  }

  .portal-image {
    text-align: center;
  }
}
/*mobile responisve*/
/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

  .portal-section {
    padding: 60px 6%;
  }

  .portal-container {
    flex-direction: column;
    gap: 35px;
    text-align: center;
  }

  /* Content */
  .portal-content h2 {
    font-size: 30px;
    text-align: center;
  }

  .portal-content p {
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
  }

  /* Image */
  .portal-image img {
    max-width: 100%;
  }

  /* Softer animation for mobile */
  .slide-left,
  .slide-right {
    animation-duration: 1.5s;
  }
}

/* ===== EXTRA SMALL DEVICES ===== */
@media (max-width: 480px) {

  .portal-section {
    padding: 50px 5%;
  }

  .portal-content h2 {
    font-size: 26px;
    text-align: left;
  }

  .portal-content p {
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
  }
}
/*mobile responisve*/
/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

  .trouble-portal-section {
    padding: 40px 6%;
  }

  .trouble-portal-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  /* Image */
  .trouble-portal-image img {
    max-width: 100%;
  }

  /* Content */
  .trouble-portal-content h2 {
    font-size: 28px;
  }

  .trouble-portal-content p {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* ===== EXTRA SMALL DEVICES ===== */
@media (max-width: 480px) {

  .trouble-portal-section {
    padding: 35px 5%;
  }

  .trouble-portal-content h2 {
    font-size: 24px;
  }

  .trouble-portal-content p {
    font-size: 14px;
    line-height: 1.7;
  }
}

/*cta section*/
.ticket-cta-section {
  padding: 90px 8%;
  background: #f9fbfd;
}

.ticket-cta-container {
  max-width: 750px;
  margin: auto;
  text-align: center;
}

.ticket-cta-container h2 {
  font-size: 42px;
  color: #1aa6df;
  margin-bottom: 22px;
}

.ticket-cta-container p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 32px;
}

.signup-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #1aa6df;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s ease;
}

.signup-btn:hover {
  background: #148fc0;
  box-shadow: 0 8px 18px rgba(26, 166, 223, 0.3);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .ticket-cta-container h2 {
    font-size: 32px;
  }
}
/*mobile responisve*/
.ticket-cta-section {
  padding: 50px 8%;
  background: #f9fbfd;
}

.ticket-cta-container {
  max-width: 750px;
  margin: auto;
  text-align: center;
}

.ticket-cta-container h2 {
  font-size: 42px;
  color: #1aa6df;
  margin-bottom: 22px;

}

.ticket-cta-container p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 32px;
  text-align: left;
}

.signup-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #1aa6df;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s ease;
}

.signup-btn:hover {
  background: #148fc0;
  box-shadow: 0 8px 18px rgba(26, 166, 223, 0.3);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .ticket-cta-container h2 {
    font-size: 27px;
  }
}
/*online tck*/
.online-portal-section {
  padding: 90px 8%;
  background: url('https://vyugam.in//uploads/file/ticket1.jpg');
}

.online-portal-container {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.online-portal-container h2 {
  font-size: 42px;
  color: #1aa6df;
  margin-bottom: 25px;
}

.online-portal-container p {
  font-size: 16px;
  line-height: 1.9;
  color: #fff;
  margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 768px) {
  .online-portal-container h2 {
    font-size: 32px;
  }
}
/*trouble portal*/
.trouble-portal-section {
  padding: 90px 8%;
  background: #f9fbfd;
}

.trouble-portal-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Image */
.trouble-portal-image {
  flex: 1;
  text-align: left;
}

.trouble-portal-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
}

/* Content */
.trouble-portal-content {
  flex: 1;
}

.trouble-portal-content h2 {
 
  font-size: 33px;
  color: #1aa6df;
  margin-bottom: 22px;
}

.trouble-portal-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 900px) {
  .trouble-portal-container {
    flex-direction: column;
    text-align: center;
  }

  .trouble-portal-image {
    text-align: center;
  }
}
/*mobile responsive*/
/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

  .trouble-portal-section {
    padding: 60px 6%;
  }

  .trouble-portal-container {
    flex-direction: column;
    gap: 35px;
    text-align: center;
  }

  /* Image */
  .trouble-portal-image img {
    max-width: 100%;
  }

  /* Content */
  .trouble-portal-content h2 {
    font-size: 28px;
  }

  .trouble-portal-content p {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* ===== EXTRA SMALL DEVICES ===== */
@media (max-width: 480px) {

  .trouble-portal-section {
    padding: 50px 5%;
  }

  .trouble-portal-content h2 {
    font-size: 24px;
  }

  .trouble-portal-content p {
    font-size: 14px;
    line-height: 1.7;
  }
}

/*tck automation*/
.automation-section {
  padding: 50px 8%;
  background: #ffffff;
}

.automation-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Image */
.automation-image {
  flex: 1;
}

.automation-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
}

/* Content */
.automation-content {
  flex: 1;
}

.automation-content h2 {
  font-size: 40px;
  color: #1aa6df;
  margin-bottom: 22px;
}

.automation-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 900px) {
  .automation-container {
    flex-direction: column;
    text-align: center;
  }
}
/*online tck*/
.online-portal-section {
  padding: 50px 8%;
  background: url('https://vyugam.in//uploads/file/ticket1.jpg');
}

.online-portal-container {
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.online-portal-container h2 {
  font-size: 42px;
  color: #1aa6df;
  margin-bottom: 25px;
}

.online-portal-container p {
  font-size: 16px;
  line-height: 1.9;
  color: #fff;
  margin-bottom: 18px;
  text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
  .online-portal-container h2 {
    font-size: 22px;
    text-align: left;
  }
}
/*trouble portal*/
.trouble-portal-section {
  padding: 90px 8%;
  background: #f9fbfd;
}

.trouble-portal-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Image */
.trouble-portal-image {
  flex: 1;
  text-align: left;
}

.trouble-portal-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
}

/* Content */
.trouble-portal-content {
  flex: 1;
}

.trouble-portal-content h2 {
  text-align: left;
  font-size: 33px;
  color: #1aa6df;
  margin-bottom: 22px;
}

.trouble-portal-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 18px;
  text-align: left;
}

/* Responsive */
@media (max-width: 900px) {
  .trouble-portal-container {
    flex-direction: column;
    text-align: center;
  }

  .trouble-portal-image {
    text-align: center;
  }
}
/*tck automation*/
.automation-section {
  padding: 50px 8%;
  background: #ffffff;
}

.automation-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Image */
.automation-image {
  flex: 1;
}

.automation-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
}

/* Content */
.automation-content {
  flex: 1;
}

.automation-content h2 {
  font-size: 40px;
  color: #1aa6df;
  margin-bottom: 22px;
}

.automation-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  margin-bottom: 18px;
}

/* Responsive */
@media (max-width: 900px) {
  .automation-container {
    flex-direction: column;
    text-align: center;
  }
}
/*mobile responsive*/
/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

  .automation-section {
    padding: 40px 6%;
  }

  .automation-container {
    flex-direction: column;
    gap: 35px;
    text-align: center;
  }

  /* Image */
  .automation-image img {
    max-width: 100%;
  }

  /* Content */
  .automation-content h2 {
    font-size: 28px;
  }

  .automation-content p {
    font-size: 15px;
    line-height: 1.8;
  }
}

/* ===== EXTRA SMALL DEVICES ===== */
@media (max-width: 480px) {

  .automation-section {
    padding: 35px 5%;
  }

  .automation-content h2 {
    font-size: 24px;
    text-align: left;
  }

  .automation-content p {
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
  }
}


/*news portal*/
.portal-hero {
  padding: 50px 6%;
  background: #ffffff;
}

/* LAYOUT */
.portal-wrapper {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* LEFT CONTENT */
.portal-content {
  flex: 1.2;
}

.portal-content h1 {
  font-size:30px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #000;
}

.portal-content h1 span {
  color: #e60000;
}

.portal-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 14px;
}

/* BUTTON */
.portal-btn {
  display: inline-block;
  margin: 22px 0 28px;
  padding: 14px 36px;
  background: #e60000;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s ease;
  display:none;
}

.portal-btn:hover {
  background: #c80000;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(230, 0, 0, 0.3);
}

/* FEATURES */
.portal-features {
  list-style: none;
}

.portal-features li {
  font-size: 15px;
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
}

.portal-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color:#194389;
  font-weight: bold;
}

/* RIGHT IMAGE */
.portal-image {
  flex: 1;
  text-align: right;
}

.portal-image img {
  width: 100%;
  max-width: 480px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .portal-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .portal-image {
    text-align: center;
  }

  .portal-features li {
    text-align: left;
  }
}
/*news owner*/
.news-owners-section {
  background: #fff6e6;
  padding: 60px 6%;
}

/* CONTAINER */
.news-owners-container {
  max-width: 1300px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.news-owners-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #000;
}

.news-owners-title span {
  color: #e60000;
}

/* LOGOS ROW */
.news-owners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* LOGO */
.news-owner img {
  max-height: 70px;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(0%);
}

/* DIVIDER */
.divider {
  width: 1px;
  height: 70px;
  background: #ccc;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .news-owners-logos {
    gap: 25px;
  }

  .divider {
    display: none;
  }

  .news-owners-title {
    font-size: 28px;
  }
}
/*news fqa*/
.news-features-section {
  padding: 70px 6%;
  background: #fff;
}

/* CONTAINER */
.news-features-container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.news-features-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
}

.news-features-title span {
  color: #e60000;
}

/* DESC */
.news-features-desc {
  font-size: 15px;
  color: #444;
  max-width: 900px;
  margin-bottom: 45px;
}

/* GRID */
.news-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* COLUMN */
.features-column {
  width: 100%;
}

/* HEADING */
.features-heading {
  background:#002e7c;
  color: #fff;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  border-radius: 4px;
}

/* ACCORDION */
details {
  border-bottom: 1px solid #ddd;
  padding:0px;
}

summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  position: relative;
  padding-right: 20px;
}

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 18px;
  margin-right: 20px;
}

details[open] summary::after {
  content: "−";
}

/* CONTENT */
details p {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  padding: 10px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .news-features-grid {
    grid-template-columns: 1fr;
  }

  .news-features-title {
    font-size: 26px;
  }
}
/*news service*/
.news-services-section {
  background: #fff1ee; /* light pink background */
  padding: 90px 6%;
  text-align: center;
}

/* CONTAINER */
.news-services-container {
  max-width: 1200px;
  margin: auto;
}

/* TAGLINE */
.news-services-tagline {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000;
  display: block;
  margin-bottom: 18px;
}

/* TITLE */
.news-services-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 25px;
  color: #000;
}

/* DESCRIPTION */
.news-services-desc {
  font-size: 16px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 55px;
  color: #333;
}

/* CARDS WRAPPER */
.news-services-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* SINGLE CARD */
.news-service-card {
  background: #ffffff;
  padding: 18px 38px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* ICON IMAGE */
.news-service-card img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* CARD TEXT */
.news-service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

/* HOVER EFFECT */
.news-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .news-services-title {
    font-size: 30px;
  }

  .news-services-desc {
    font-size: 15px;
  }

  .news-service-card {
    padding: 14px 26px;
  }

  .news-service-card h3 {
    font-size: 16px;
  }
}
/*news portal*/
.portal-services-section {
  background: #fff1ee;
  padding: 50px 6%;
  text-align: center;
}

/* CONTAINER */
.portal-services-container {
  max-width: 1200px;
  margin: auto;
}

/* TAGLINE */
.portal-services-tagline {
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000;
}

/* TITLE */
.portal-services-title {
  font-size:31px;
  font-weight: 800;
  line-height: 1.3;
  color: #000;
}

/* DESCRIPTION */
.portal-services-desc {
  max-width: 900px;
  margin: 0 auto 55px;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* CARD WRAPPER */
.portal-services-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* SINGLE CARD */
.portal-service-box {
  background: #fff;
  padding: 18px 38px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* ICON IMAGE */
.portal-service-box img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* TEXT */
.portal-service-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

/* HOVER EFFECT */
.portal-service-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .portal-services-title {
    font-size: 30px;
  }

  .portal-services-desc {
    font-size: 15px;
  }

  .portal-service-box {
    padding: 14px 26px;
  }

  .portal-service-box h3 {
    font-size: 16px;
  }
}
/*news service*/
.news-portal-services-section {
  padding: 40px 6%;
  background: #ffffff;
}

/* CONTAINER */
.news-portal-services-container {
  max-width: 1200px;
  margin: auto;
}

/* TITLE */
.news-portal-services-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 50px;
  color: #000;
}

/* GRID */
.news-portal-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.news-portal-service-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s ease;
}

.news-portal-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

/* IMAGE */
.news-portal-service-card img {
  width: 330px;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 18px;
}

/* HEADING */
.news-portal-service-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #000;
}

/* TEXT */
.news-portal-service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}

/* LIST */
.news-portal-service-card ul {
  list-style: none;
  margin-bottom: 20px;
}

.news-portal-service-card ul li {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  padding-left: 26px;
  position: relative;
}

.news-portal-service-card ul li::before {
  content: "✔";
  color:#002e7c;
  position: absolute;
  left: 0;
  top: 0;
}

/* BUTTON */
.news-portal-service-btn {
  margin-top: auto;
  display: inline-block;
  text-align: center;
  background: #002e7c;
  color: #fff;
  padding: 14px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease;
}

.news-portal-service-btn:hover {
  background: #002e7c;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .news-portal-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .news-portal-services-grid {
    grid-template-columns: 1fr;
  }

  .news-portal-services-title {
    font-size: 30px;
  }
}
/*news portal*/
.new-portal-hero {
  padding: 50px 8%;
  background: linear-gradient(135deg, #f4f9ff, #eef3ff);
  font-family: 'Segoe UI', sans-serif;
}

.new-portal-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* ===== LEFT IMAGE AREA ===== */
.new-portal-media {
  flex: 1;
}

.new-portal-red-bg {
  background:#194389;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(229, 57, 53, 0.35);
}

.new-portal-media img {
  width: 100%;
  display: block;
  border-radius: 15px;
  background: #fff;
  padding: 15px;
}

/* ===== RIGHT CONTENT ===== */
.new-portal-content {
  flex: 1;
}

.new-portal-content h1 {
  font-size: 30px;
  font-weight: 700;
  color: #1a1a1a;

}

.new-portal-content p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 15px;
}

.new-portal-content strong {
  color: #e53935;
}

/* ===== BUTTON ===== */
.new-portal-btn {
  display: inline-block;
  margin: 25px 0;
  padding: 14px 25px;
  background: #e53935;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 12px 30px rgba(229, 57, 53, 0.35);
}

.new-portal-btn:hover {
  background: #c62828;
  transform: translateY(-3px);
}

/* ===== FEATURES LIST ===== */
.new-portal-features {
  padding-left: 0;
  list-style: none;
}

.new-portal-features li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 12px;
  padding-left: 30px;
  position: relative;
}

.new-portal-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #e53935;
  font-weight: bold;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .new-portal-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .new-portal-content h1 {
    font-size: 2.2rem;
  }

  .new-portal-features li {
    text-align: left;
  }
}
/*mobile responsive*/
/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

  .new-portal-hero {
    padding: 40px 6%;
  }

  .new-portal-wrapper {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  /* LEFT IMAGE */
  .new-portal-red-bg {
    padding: 20px;
    border-radius: 16px;
  }

  .new-portal-media img {
    padding: 12px;
    border-radius: 12px;
  }

  /* RIGHT CONTENT */
  .new-portal-content h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .new-portal-content p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* BUTTON */
  .new-portal-btn {
    width: 100%;
    max-width: 260px;
    margin: 20px auto 0;
    text-align: center;
  }

  /* FEATURES */
  .new-portal-features {
    margin-top: 20px;
  }

  .new-portal-features li {
    font-size: 0.95rem;
    text-align: left;
  }
}

/* ===== EXTRA SMALL DEVICES ===== */
@media (max-width: 480px) {

  .new-portal-hero {
    padding: 35px 5%;
  }

  .new-portal-content h1 {
    font-size: 22px;
  }

  .new-portal-content p {
    font-size: 0.9rem;
  }

  .new-portal-red-bg {
    padding: 16px;
  }
}
/*mobile responsive*/
/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

  .news-features-section {
    padding: 50px 5%;
  }

  .news-features-title {
    font-size: 26px;
    text-align: center;
    margin-bottom: 12px;
  }
}

/* ===== EXTRA SMALL DEVICES ===== */
@media (max-width: 480px) {

  .news-features-section {
    padding: 40px 4%;
  }

  .news-features-title {
    font-size: 22px;
  }
}


/*scl intro*/
/* ===== HERO BACKGROUND ===== */
.school-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #5b7cfa, #79b8ff);
  display: flex;
  align-items: center;
  padding: 80px 8%;
  font-family: 'Segoe UI', sans-serif;
}

.school-hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 60px;
}

/* ===== LEFT CONTENT ===== */
.school-hero-content {
  max-width: 520px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 24px;
  color: #fff;
}

.school-tag {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}

.school-hero-content h1 {
  font-size:30px;
  line-height: 1.1;
  margin-bottom: 15px;
}

.school-hero-content h1 span {
  color: #fff;
}

.school-hero-content h1 small {
  font-size: 1.4rem;
  font-weight: 400;
  opacity: 0.9;
}

.school-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 15px;
}

.school-description {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.95;
}

/* ===== BUTTONS ===== */
.school-btn-group {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.btn {
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.primary-btn {
  background: #fff;
  color: #3f63f2;
}

.primary-btn:hover {
  transform: translateY(-3px);
}

.secondary-btn {
  border: 2px solid #fff;
  color: #fff;
}

.secondary-btn:hover {
  background: #fff;
  color: #3f63f2;
}

/* ===== RIGHT IMAGE STACK ===== */
.school-hero-images {
  position: relative;
  width: 480px;
  height: 420px;
}

.image-card {
  position: absolute;
  background: #fff;
  padding: 10px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.image-card img {
  width: 100%;
  border-radius: 14px;
}

/* Image Positions */
.img-one {
  width: 260px;
  top: 0;
  right: 40px;
}

.img-two {
  width: 300px;
  top: 120px;
  left: 0;
}

.img-three {
  width: 260px;
  bottom: 0;
  right: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .school-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .school-hero-images {
    width: 100%;
    height: auto;
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }

  .image-card {
    position: static;
  }
}
/*mobile responsive*/
.school-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #002e7c, #194389, #5b7cfa);
  display: flex;
  align-items: center;
  padding: 80px 8%;
  font-family: 'Segoe UI', sans-serif;
}

.school-hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 60px;
}

/* ===== LEFT CONTENT ===== */
.school-hero-content {
  max-width: 520px;
  background:rgb(255 255 255 / 86%);
  backdrop-filter: blur(10px);
  padding: 50px;
  border-radius: 24px;
  color: #fff;
}

.school-tag {
  display: inline-block;
  background: rgba(255,255,255,0.25);
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 20px;
}

.school-hero-content h1 {
  font-size:30px;
  line-height: 1.1;
  margin-bottom: 15px;
}

.school-hero-content h1 span {
  color: #fff;
}

.school-hero-content h1 small {
  font-size: 1.4rem;
  font-weight: 400;
  opacity: 0.9;
}

.school-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 15px;
}

.school-description {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.95;
}

/* ===== BUTTONS ===== */
.school-btn-group {
  margin-top: 30px;
  display: flex;
  gap: 20px;
}

.btn {
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.primary-btn {
  background: #fff;
  color: #3f63f2;
}

.primary-btn:hover {
  transform: translateY(-3px);
}

.secondary-btn {
  border: 2px solid #fff;
  color: #fff;
}

.secondary-btn:hover {
  background: #fff;
  color: #3f63f2;
}

/* ===== RIGHT IMAGE STACK ===== */
.school-hero-images {
  position: relative;
  width: 480px;
  height: 420px;
}

.image-card {
  position: absolute;
  background: #fff;
  padding: 10px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.image-card img {
  width: 100%;
  border-radius: 14px;
}

/* Image Positions */
.img-one {
  width: 260px;
  top: 0;
  right: 40px;
}

.img-two {
  width: 300px;
  top: 120px;
  left: 0;
}

.img-three {
  width: 260px;
  bottom: 0;
  right: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .school-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .school-hero-images {
    width: 100%;
    height: auto;
    position: static;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
  }

  .image-card {
    position: static;
  }
}
/*mobile responsive*/
/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {

  .school-hero {
    min-height: auto;
    padding: 60px 6%;
  }

  .school-hero-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  /* LEFT CONTENT */
  .school-hero-content {
    max-width: 100%;
    padding: 35px 25px;
    border-radius: 20px;
  }

  .school-tag {
    font-size: 0.85rem;
  }

  .school-hero-content h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .school-hero-content h1 small {
    font-size: 1.1rem;
  }

  .school-subtitle {
    font-size: 1rem;
  }

  .school-description {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* BUTTONS */
  .school-btn-group {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn {
    width: 100%;
    max-width: 260px;
    padding: 13px 0;
    text-align: center;
  }

  /* RIGHT IMAGES */
  .school-hero-images {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .image-card {
    position: static;
    padding: 8px;
  }

  .image-card img {
    border-radius: 12px;
  }
}

/* ===== EXTRA SMALL DEVICES ===== */
@media (max-width: 480px) {

  .school-hero {
    padding: 50px 5%;
  }

  .school-hero-content {
    padding: 28px 20px;
  }

  .school-hero-content h1 {
    font-size: 22px;
  }

  .school-subtitle {
    font-size: 0.95rem;
  }

  .school-description {
    font-size: 0.9rem;
  }
}

/*scl features*/
.sm-unique-section {
  padding: 50px 8%;
  background: #f9fbff;
  font-family: 'Segoe UI', sans-serif;
}

.sm-unique-container {
  display: flex;
  align-items: center;
  gap: 70px;
}

/* ===== LEFT CONTENT ===== */
.sm-unique-left {
  flex: 1;
}

.sm-unique-title {
  font-size: 25px;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.2;
}

.sm-unique-title span.pink { color: #ff6db4; }
.sm-unique-title span.red { color: #ff3d00; }
.sm-unique-title span.orange { color: #ff9800; }
.sm-unique-title span.blue { color: #3f51ff; }
.sm-unique-title span.purple { color: #9c6bff; }

.sm-unique-points {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.sm-unique-points li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
  padding-left: 32px;
  position: relative;
}

.sm-unique-points li::before {
  content: "➜";
  position: absolute;
  left: 0;
  color: #3f51ff;
  font-weight: bold;
}

/* ===== FEATURE CARDS (COMPACT) ===== */
.sm-feature-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px; /* reduced gap */
}

/* Card */
.sm-card {
  background: #fff;
  padding: 18px;                
  border-radius: 14px;         
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* Full width card */
.sm-card.full {
  grid-column: span 2;
}

/* Heading */
.sm-card h4 {
  font-size: 1.05rem;           
  margin: 10px 0 6px;
  font-weight: 600;
}

/* Text */
.sm-card p {
  font-size: 0.88rem;           
  color: #666;
  line-height: 1.45;
}

/* ICONS (smaller) */
.icon {
  width: 34px;                  
  height: 34px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.analytics {
  background: #e3f2fd;
}

.automation {
  background: #e8f5e9;
}

.security {
  background: #fdecea;
}

/* Responsive */
@media (max-width: 768px) {
  .sm-feature-cards {
    grid-template-columns: 1fr;
  }

  .sm-card.full {
    grid-column: auto;
  }
}

/* ===== RIGHT IMAGE ===== */
.sm-unique-right {
  flex: 1;
  position: relative;
}

.sm-unique-right img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

.smart-badge {
  position: absolute;
  bottom: -20px;
  right: 40px;
  background: #ffcc00;
  padding: 10px 26px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .sm-unique-container {
    flex-direction: column;
  }

  .sm-feature-cards {
    grid-template-columns: 1fr;
  }

  .sm-card.full {
    grid-column: auto;
  }

  .smart-badge {
    right: 20px;
  }
}
/*exclusive features*/
/* Container and Section Styling */
.sm-features-section {
    padding: 80px 0;
    background-color: #fcfdfe;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

.sm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
.sm-main-title {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
    /* Blue to Pink Gradient */
    background: linear-gradient(90deg, #4facfe 0%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sm-description {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 50px;
}

/* Grid System */
.sm-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 items per row */
    gap: 30px;
}

/* Card Individual Styling */
.sm-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.sm-card h3 {
    font-size: 18px;
    color: #333;
    margin: 15px 0 10px;
    font-weight: 700;
}

.sm-card p {
    font-size: 14px;
    color: #888;
    line-height: 1.4;
    margin: 0;
}

/* Icon Circle Styling */
.sm-icon-wrapper {
    width: 70px;
    height: 70px;
    
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.sm-icon-wrapper img {
    width: 66px;
    height: auto;
}

/* Responsive Breakdown */
@media (max-width: 992px) {
    .sm-features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .sm-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .sm-features-grid {
        grid-template-columns: 1fr;
    }
}
/*mobile responsive*/
/* ===== MOBILE RESPONSIVE ENHANCEMENTS ===== */
@media (max-width: 768px) {

  .sm-features-section {
    padding: 40px 0;
  }

  .sm-main-title {
    font-size: 26px;
    line-height: 1.2;
  }

  .sm-description {
    font-size: 15px;
    margin-bottom: 35px;
  }

  .sm-features-grid {
    gap: 20px;
  }

  .sm-card {
    padding: 20px 15px;
  }

  .sm-card h3 {
    font-size: 16px;
  }

  .sm-card p {
    font-size: 13px;
    line-height: 1.5;
  }

  .sm-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .sm-icon-wrapper img {
    width: 56px;
  }
}

/* ===== EXTRA SMALL DEVICES ===== */
@media (max-width: 480px) {

  .sm-features-section {
    padding: 35px 0;
  }

  .sm-main-title {
    font-size: 22px;
  }

  .sm-description {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .sm-card {
    padding: 18px 14px;
  }

  .sm-icon-wrapper {
    width: 55px;
    height: 55px;
  }

  .sm-icon-wrapper img {
    width: 50px;
  }
}

/*scl chosse us*/

.sm-special-features {
    background-color: #fcfdfe;
    padding: 50px 0;
}

.sm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styling */
.sm-header {
    text-align: center;
    margin-bottom: 70px;
}

.sm-top-label {
    font-size: 14px;
    letter-spacing: 1.5px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #ff80b5 0%, #3ea8ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sm-title {
    font-size: 34px;
    color: #2d2d2d;
    font-weight: 700;
    margin-bottom: 20px;
}

.sm-subtitle {
    color: #7a7a7a;
    font-size: 16px;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid Layout */
.sm-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Feature Box Styling (UPDATED) */
.sm-feature-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 42px 25px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid transparent;
}

.sm-feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
    border-color: #d8b4ff;
}

/* Card Title & Text */
.sm-feature-box h4 {
    font-size: 18px;
    color: #2f2f2f;
    margin: 25px 0 12px;
    font-weight: 700;
}

.sm-feature-box p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Icon Container */
.sm-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon Image */
.sm-icon-box img {
    width: 45px;
    height: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .sm-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sm-grid {
        grid-template-columns: 1fr;
    }

    .sm-title {
        font-size: 28px;
    }
}
.btn-phone-pulse {
    margin-right: 16px;
}
.btn-whatsapp-pulse-border {
   margin-right: 17px;
}

/* hospital intro */
.clinic-hero {
  background:#fff;
 
}

.clinic-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* LEFT CONTENT */
.clinic-content {
  flex: 1;
}

.clinic-content h1 {
  font-size: 33px;
  color: #0b3c7c;
  margin-bottom: 15px;
  line-height: 1.3;
}

.clinic-subtitle {
  font-size: 18px;
  color: #2c6bed;
  font-weight: 600;
  margin-bottom: 15px;
}

.clinic-desc {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.clinic-list {
  list-style: none;
  padding: 0;
}

.clinic-list li {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
}

.clinic-list li::before {
  content: "✔";
  color: #2dbf64;
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* RIGHT IMAGE */
.clinic-image {
  flex: 1;
  text-align: center;
}

.clinic-image img {
  max-width: 100%;
  height: auto;
}

/* 📱 TABLET */
@media (max-width: 900px) {
  .clinic-container {
    flex-direction: column;
    text-align: center;
    gap: 35px;
  }

  .clinic-content h1 {
    font-size: 30px;
  }

  .clinic-list {
    max-width: 500px;
    margin: auto;
  }

  .clinic-list li {
    text-align: left;
  }
}

/* 📱 MOBILE */
@media (max-width: 576px) {
  .clinic-hero {
    padding: 5px 15px;
  }

  .clinic-content h1 {
    font-size: 24px;
  }

  .clinic-subtitle {
    font-size: 16px;
  }

  .clinic-desc {
    font-size: 15px;
  }

  .clinic-list li {
    font-size: 14px;
  }

  .clinic-image img {
    width: 100%;
  }
}



/* shabdha about */
.shabdha-center-section {
 
  background-color: #ffffff;
  display: flex;
  justify-content: center;
}

.shabdha-center-content {
  max-width: 1100px;
  align-items: center;
  gap: 40px;
}

/* Image Left */
.shabdha-center-image img {
  width: 100%;
 
  border-radius: 12px;
}

/* Content Right */
.shabdha-center-text h2 {
  font-size: 30px;
  color: #0b3c7c;
  margin-bottom: 15px;
}

.shabdha-center-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
  .shabdha-center-content {
    flex-direction: column;
    text-align: center;
  }

  .shabdha-center-image img {
    max-width: 100%;
  }
}

/*shabdha stats*/
.shabdha-stats-bar {
  background: linear-gradient(to bottom, #ffffff 0%, #e0f7fa 100%);
  padding: 60px 20px;
  text-align: center;
}

.stats-title {
  font-size: 28px;
  font-weight: 800;
  color: #333;
  margin-bottom: 50px;
  letter-spacing: -0.5px;
}

.stats-wrapper {
  display: flex;
  justify-content: center;
  gap: 80px; /* Space between the three items */
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 250px;
}

.stat-number {
  font-size: 64px;
  font-weight: 500;
  color: #1a6391; 
  line-height: 1;
  margin-bottom: 10px;
}

.stat-text {
  font-size: 16px;
  color: #444;
  font-weight: 400;
}

/* Responsive adjustment for mobile */
@media (max-width: 768px) {
  .stats-wrapper {
    gap: 40px;
  }
  .stat-number {
    font-size: 48px;
  }
}
/*shabdha sln*/
/* Container */
.clinic-container {
  padding: 60px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap:200px;
  background-color: #fff;
  flex-wrap: wrap;
}

/* ===== Circle Graphic ===== */
.circle-ring {
  position: relative;
  width: 350px;
  height: 350px;
  border: 3px solid #00a8a8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.center-brand {
  text-align: center;
}

.brand-name {
  color: #004d4d;
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  text-transform: lowercase;
}

/* ===== Nodes ===== */
.node {
  position: absolute;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  font-size: 12px;
  font-weight: 600;
  color: #333;
  white-space: nowrap;
}

/* Node Positions */
.pos-top { top: -16px; left: 36%; }
.pos-top-right { top: 14%; right: -12%; }
.pos-right { top: 45%; right: -22%; }
.pos-bottom-right { bottom: 14%; right: -12%; }
.pos-bottom { bottom: -16px; left: 38%; }
.pos-bottom-left { bottom: 14%; left: -12%; }
.pos-left { top: 45%; left: -22%; }
.pos-top-left { top: 14%; left: -12%; }

/* ===== Content Section ===== */
.content-section {
  max-width: 460px;
}

.content-section h1 {
  color: #1f1f1f;
  font-size: 44px;
  margin-bottom: 18px;
}

.content-section h1 span {
  color: #004d4d;
}

.content-section p {
  color: #555;
  line-height: 1.8;
  font-size: 16px;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  margin-top: 22px;
  background-color: #00a8a8;
  color: #ffffff;
  padding: 14px 36px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s ease;
}

.cta-button:hover {
  background-color: #008c8c;
}
/*mobile responsive*/
/* 📱 MOBILE RESPONSIVE */
@media (max-width: 576px) {

  .clinic-container {
    flex-direction: column;
    gap: 35px;
    padding: 30px 15px;
  }

  /* Circle layout resize */
  .circle-ring {
    width: 260px;
    height: 260px;
    border-width: 2px;
  }

  .brand-name {
    font-size: 22px;
  }

  /* Module labels smaller */
  .node {
    font-size: 10px;
    padding: 4px 8px;
  }

  /* Adjust positions to avoid overflow */
  .pos-top { top: -12px; left: 35%; }
  .pos-bottom { bottom: -12px; left: 35%; }
  .pos-right { right: -15%; }
  .pos-left { left: -15%; }

  /* Text section */
  .content-section {
    max-width: 100%;
    text-align: center;
  }

  .content-section h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .content-section p {
    font-size: 15px;
    text-align: left;
  }

  .cta-button {
    padding: 12px 28px;
    font-size: 14px;
  }
}

/*med sftw*/
.shabdha-mpms-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.shabdha-mpms-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

/* IMAGE LEFT */
.shabdha-mpms-image {
  flex: 1;
}

.shabdha-mpms-image img {
  width: 100%;
  max-width: 550px;
}

/* CONTENT RIGHT */
.shabdha-mpms-content {
  flex: 1;
}

.shabdha-mpms-content h2 {
  font-size: 34px;
  color: #222;
  margin-bottom: 20px;
}

.shabdha-mpms-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.shabdha-mpms-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #7dbb2c;
  color: #ffffff;
  text-decoration: none;
  border-radius: 4px;
  font-size: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .shabdha-mpms-container {
    flex-direction: column;
    text-align: center;
  }

  .shabdha-mpms-image img {
    max-width: 100%;
  }
}
/*shabdha prdts*/
/* ===== SHABDHA PRODUCTS SECTION ===== */
.shabdha-products {
  padding: 80px 20px;
  background: #ffffff;
  font-family: Arial, sans-serif;
}

.shabdha-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.shabdha-products-header {
  text-align: center;
  margin-bottom: 70px;
}

.shabdha-products-header h2 {
  font-size: 34px;
  color: #002e7c;
  margin-bottom: 8px;
}

.shabdha-products-header p {
  font-size: 16px;
  color: #555;
}

/* LIST */
.shabdha-products-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* ITEM BASE */
.shabdha-product-item {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* 🔁 AUTO ZIG-ZAG */
.shabdha-product-item:nth-child(even) {
  flex-direction: row-reverse;
}

/* IMAGE */
.shabdha-product-image {
  flex: 1;
}

.shabdha-product-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

/* CONTENT */
.shabdha-product-content {
  flex: 1;
}

.shabdha-product-content h4 {
  font-size: 22px;
  color: #194389;
  margin-bottom: 12px;
}

.shabdha-product-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* ===== MOBILE VIEW ===== */
@media (max-width: 768px) {
  .shabdha-product-item,
  .shabdha-product-item:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }

  .shabdha-product-image img {
    border-radius: 12px;
  }
}
/*envelope pay intro*/
.envelope-intro-section {
  position: relative;
  min-height: 100vh;
  background:linear-gradient(135deg, #002e7c, #194389, #5b7cfa);
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.envelope-intro-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

/* CONTAINER */
.envelope-intro-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

/* CONTENT */
.envelope-intro-content h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.envelope-intro-desc {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* TAGS */
.envelope-intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.envelope-intro-tags span {
  padding: 8px 14px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.08);
  font-size: 14px;
}

/* BUTTONS */
.envelope-intro-buttons {
  display: flex;
  gap: 15px;
}

.envelope-intro-btn-primary {
  background: #ff5a1f;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
}

.envelope-intro-btn-secondary {
  border: 1px solid #fff;
  padding: 14px 26px;
  border-radius: 30px;
  text-decoration: none;
  color: #fff;
}

/* IMAGE */
.envelope-intro-image img {
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

/* 🔥 TOP TO BOTTOM ANIMATION */
.envelope-intro-fade-top {
  opacity: 0;
  transform: translateY(-40px);
  animation: envelopeFadeTop 0.9s ease forwards;
}

@keyframes envelopeFadeTop {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* DELAYS */
.delay-1 { animation-delay: 2s; }
.delay-2 { animation-delay: 4s; }
.delay-3 { animation-delay: 6s; }
.delay-4 { animation-delay: 8s; }
.delay-5 { animation-delay: 9s; }
.delay-6 { animation-delay: 10s; }
.delay-7 { animation-delay: 10s; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .envelope-intro-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .envelope-intro-buttons,
  .envelope-intro-tags {
    justify-content: center;
  }
}
h1.envelope-intro-fade-top {
    font-size: 30px;
    color: #fff !important;
}
p.envelope-intro-desc.envelope-intro-fade-top.delay-1{
    color: #829893;
}
/*envelope about*/
.envelope-about {
  padding: 80px 20px;
  background: #ffffff;
}

/* CONTAINER */
.envelope-about-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}

/* LEFT CONTENT */
.envelope-about-content h2 {
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 22px;
  color: #1c1c1c;
}

.envelope-about-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 18px;
}

/* RIGHT STATS GRID */
.envelope-about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

/* STAT CARD */
.envelope-stat-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.envelope-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* ICON CONTAINER */
.envelope-stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background:#1d478f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* ICON IMAGE */
.envelope-stat-icon img {
  width: 40px;
  height: 34px;
  object-fit: contain;
  margin-top: 16px;
}

/* STAT TEXT */
.envelope-stat-card h3 {
  font-size: 30px;
  color:#1d478f;
  margin-bottom: 6px;
  font-weight: 700;
}

.envelope-stat-card p {
  font-size: 15px;
  color: #333;
  font-weight: 500;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .envelope-about-container {
    grid-template-columns: 1fr;
  }

  .envelope-about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .envelope-about-content h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {
  .envelope-about-stats {
    grid-template-columns: 1fr;
  }

  .envelope-about {
    padding: 60px 15px;
  }

  .envelope-about-content h2 {
    font-size: 28px;
  }
}
/*envelope features*/
.envelope-pay-features {
  margin-bottom: 50px;
  background: #ffffff;
}

.envelope-pay-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.envelope-pay-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.envelope-pay-header h2 {
  font-size: 38px;
  margin-bottom: 15px;
  color: #0f172a;
}

.envelope-pay-header p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* CARDS GRID */
.envelope-pay-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* CARD */
.envelope-pay-card {
  border-radius: 18px;
  padding: 40px 30px;
  position: relative;
  background: #fff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.envelope-pay-card:hover {
  transform: translateY(-8px);
}

/* CARD TITLE */
.envelope-pay-card-title {
  position: absolute;
  top: -18px;
  left: 30px;
  padding: 10px 26px;
  border-radius: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
}

/* COLOR VARIANTS */
.envelope-pay-orange {
  border: 1px solid #ff6a00;
}
.envelope-pay-orange .envelope-pay-card-title {
  background: #ff6a00;
}

.envelope-pay-dark {
  border: 1px solid #3f3f46;
}
.envelope-pay-dark .envelope-pay-card-title {
  background: #3f3f46;
}

.envelope-pay-purple {
  border: 1px solid #4b1c7c;
}
.envelope-pay-purple .envelope-pay-card-title {
  background: #4b1c7c;
}

/* LIST */
.envelope-pay-card ul {
  margin-top: 30px;
  padding-left: 18px;
}

.envelope-pay-card li {
  font-size: 16px;
  margin-bottom: 12px;
  color: #444;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .envelope-pay-cards {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .envelope-pay-card-title {
    left: 20px;
  }

  .envelope-pay-header h2 {
    font-size: 32px;
  }
}
/*app flow*/
.screens-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.screens-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.screens-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 50px;
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.screen-card {
  background: #fff;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.screen-card:hover {
  transform: translateY(-10px);
}

.phone-frame {
  width: 180px;
  height: 360px;
  margin: 0 auto 20px;
  background: #fff;
  border-radius: 28px;
  padding: 12px;
  box-shadow: inset 0 0 0 6px #111;
  position: relative;
}

.phone-frame::before {
  content: '';
  width: 50px;
  height: 5px;
  background: #333;
  border-radius: 5px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.screen-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.screen-card p {
  font-size: 14px;
  color: #666;
}

/* Responsive */
@media (max-width: 600px) {
  .phone-frame {
    width: 150px;
    height: 300px;
  }
}
/*tech stack*/
/* Section Wrapper */
.tech-stack-section {
  padding: 80px 20px;
  background: #f5f7fb;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

/* Title & Subtitle */
.tech-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.tech-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Grid Layout */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card */
.tech-card {
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* Purple Header */
.tech-header {
  background:#002e7c;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  padding: 18px 22px;
}

/* Tech List */
.tech-list {
  list-style: none;
  margin: 0;
  padding: 15px 22px;
}

.tech-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  color: #111;
  border-bottom: 1px solid #ddd;
}

.tech-list li:last-child {
  border-bottom: none;
}

/* Icons */
.tech-list img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
  .tech-title {
    font-size: 26px;
  }
  .tech-header {
    font-size: 20px;
  }
  .tech-list li {
    font-size: 15px;
  }
  .tech-list img {
    width: 24px;
    height: 24px;
  }
}
figure {
   margin: 0 0 0em; 
}
/*van intro*/
.van-hero {
    padding: 70px 20px;
}

.van-hero-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT CONTENT */
.van-hero-content {
  max-width: 620px;
}

.van-hero-content h1 {
  font-size:30px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
}

.van-hero-content p {
  font-size: 16.5px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 35px;
}

/* BUTTON */
.van-btn {
  display: inline-block;
  background: #e60000;
  color: #fff;
  padding: 16px 40px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.van-btn:hover {
  background: #c90000;
}

/* RIGHT IMAGE */
.van-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.van-hero-image img {
  max-width: 100%;
  height: auto;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .van-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .van-hero-content h1 {
    font-size: 36px;
  }

  .van-hero {
    padding: 60px 20px;
  }
}
/*mobile responsive*/
.van-hero {
    padding: 70px 20px;
}

.van-hero-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT CONTENT */
.van-hero-content {
  max-width: 620px;
}

.van-hero-content h1 {
  font-size:30px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 10px;
}

.van-hero-content p {
  font-size: 16.5px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 35px;
  text-align: left;
}

/* BUTTON */
.van-btn {
  display: inline-block;
  background:#1a428a;
  color: #fff;
  padding: 16px 40px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.van-btn:hover {
  background: #c90000;
}

/* RIGHT IMAGE */
.van-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.van-hero-image img {
  max-width: 100%;
  height: auto;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .van-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .van-hero-content h1 {
    font-size: 17px;
    text-align: left;
  }

  .van-hero {
    padding: 20px 20px;
  }
}
/*saleson sln*/
.main-wrapper {
            max-width: 1200px;
            margin: 40px auto;
            text-align: center;
        }

        .section-heading {
            font-size: 2.4rem;
            font-weight: 700;
            color: #1a428a;
            margin-bottom: 60px;
        }

        .section-heading span {
            color: #00a884;
        }

        /* The Main 3-Column Layout */
        .content-layout {
            display: grid;
            grid-template-columns: 1fr 1.2fr 1fr;
            align-items: center;
            gap: 40px;
            margin-bottom: 85px;
        }

        /* Individual Feature Block */
        .feature-block {
            display: flex;
            align-items: center;
            margin-bottom: 45px;
        }

        .text-holder {
            flex: 1;
        }

        .text-holder h3 {
            font-size: 1.15rem;
            margin: 0 0 8px 0;
            color: #111111;
        }

        .text-holder p {
            font-size: 0.95rem;
            color: #666666;
            margin: 0;
            line-height: 1.5;
        }

        /* Icon Container */
        .brand-icon {
            background-color: #1a428a;
            color: #ffffff;
            width: 55px;
            height: 55px;
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.3rem;
            flex-shrink: 0;
            box-shadow: 0 5px 15px rgba(26, 66, 138, 0.2);
        }

        /* Left Column Specifics */
        .column-left .feature-block {
            text-align: right;
        }
        .column-left .brand-icon {
            margin-left: 20px;
        }

        /* Right Column Specifics */
        .column-right .feature-block {
            text-align: left;
        }
        .column-right .brand-icon {
            margin-right: 20px;
        }

        /* Center Image Container */
        .mockup-display {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .mockup-display img {
            width: 100%;
            height: auto;
            z-index: 5;
            border-radius: 30px;
        }

        /* Dashed Circle Decorative Element */
        .mockup-display::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 480px;
            height: 480px;
            border: 2px dashed #ececec;
            border-radius: 50%;
            z-index: 1;
        }

        /* Responsive Breakpoint */
        @media (max-width: 1024px) {
            .content-layout {
                grid-template-columns: 1fr;
                gap: 50px;
            }
            .column-left, .column-right {
                order: 2;
            }
            .mockup-display {
                order: 1;
            }
            .column-left .feature-block {
                text-align: left;
                flex-direction: row-reverse;
                justify-content: flex-end;
            }
            .column-left .brand-icon {
                margin-left: 0;
                margin-right: 20px;
            }
            .mockup-display::after {
                width: 350px;
                height: 350px;
            }
        }
/*mobile resp*/
@media (max-width: 600px) {

  .main-wrapper {
    margin: 20px auto;
    padding: 0 15px;
  }

  .section-heading {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .content-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }

  /* Feature Blocks */
  .feature-block {
    margin-bottom: 30px;
  }

  .text-holder h3 {
    font-size: 1rem;
  }

  .text-holder p {
    font-size: 0.9rem;
  }

  /* Icons */
  .brand-icon {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  /* Align both columns same on mobile */
  .column-left .feature-block,
  .column-right .feature-block {
    text-align: left;
    flex-direction: row-reverse;
    justify-content: flex-end;
  }

  .column-left .brand-icon,
  .column-right .brand-icon {
    margin: 0 15px 0 0;
  }

  /* Center Image */
  .mockup-display img {
    max-width: 280px;
    border-radius: 24px;
  }

  .mockup-display::after {
    width: 260px;
    height: 260px;
    border-width: 1.5px;
  }
}

/*payment section*/
.payment-section {
  padding: 30px 60px;
  background: #ffffff;
}

.payment-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT CONTENT */
.payment-content {
  max-width: 550px;
}

.payment-content h1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 35px;
  color: #111;
}

/* LIST */
.payment-list {
  list-style: none;
}

.payment-list li {
  align-items: flex-start;
  gap: 14px;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 22px;
  color: #333;
}

/* CHECK ICON */
.check {
  color: #00a884;
  font-size: 20px;
  margin-top: 4px;
}

/* HIGHLIGHT TEXT */
.green {
  color: #00a884;
  font-weight: 600;
}

/* RIGHT IMAGE */
.payment-visual-single {
  flex: 1;
  display: flex;
  justify-content: center;
}

.payment-visual-single img {
  max-width: 420px;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .payment-container {
    flex-direction: column;
    text-align: center;
  }

  .payment-list li {
    justify-content: center;
    text-align: left;
  }

  .payment-visual-single {
    margin-top: 40px;
  }
}
/*mobile resp*/
@media (max-width: 600px) {

  .payment-section {
    padding: 25px 15px;
  }

  .payment-container {
    flex-direction: column;
    gap: 35px;
    text-align: center;
  }

  .payment-content {
    max-width: 100%;
  }

  .payment-content h1 {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 25px;
  }

  .payment-list li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
    justify-content: flex-start;
  }

  .check {
    font-size: 18px;
    margin-top: 3px;
  }

  .payment-visual-single {
    margin-top: 25px;
  }

  .payment-visual-single img {
    max-width: 300px;
    border-radius: 12px;
  }
}

/*sales features*/
.sales-features-section {
  padding: 70px 20px;
  background: #ffffff;
  text-align: center;
}

.sales-features-title {
  font-size: 34px;
  margin-bottom: 50px;
  font-weight: 700;
}

.sales-features-title .brand {
  color: #0b4cd6;
}

.sales-features-title .highlight {
  color: #00a884;
}

.sales-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.sales-features-card {
  background: #f2f7ff;
  border-radius: 16px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.sales-features-card:hover {
  transform: translateY(-8px);
}

.sales-features-card img {
  width: 60px;
  margin-bottom: 15px;
}

.sales-features-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.sales-features-card ul {
  padding-left: 0;
  list-style: none;
}

.sales-features-card ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #444;
}

.sales-features-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00a884;
  font-weight: bold;
}

.sales-features-card a {
  display: inline-block;
  margin-top: 20px;
  text-decoration: none;
  color: #0b4cd6;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
  .sales-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sales-features-grid {
    grid-template-columns: 1fr;
  }

  .sales-features-title {
    font-size: 26px;
  }
}
/*mobile responsive*/
@media (max-width: 600px) {

  .sales-features-section {
    padding: 40px 15px;
  }

  .sales-features-title {
    font-size: 24px;
    margin-bottom: 35px;
    line-height: 1.3;
  }

  .sales-features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sales-features-card {
    padding: 22px;
    border-radius: 14px;
  }

  .sales-features-card img {
    width: 48px;
    margin-bottom: 12px;
  }

  .sales-features-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .sales-features-card ul li {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .sales-features-card a {
    margin-top: 15px;
    font-size: 14px;
  }
}

/*mobile sln*/
.saleson-mobile-section {
  background: #f3f7f6;
  padding: 70px 20px;
}

.saleson-mobile-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
}

.saleson-mobile-title span {
  color: #0b4cd6;
}

.saleson-mobile-title .highlight {
  color: #00a884;
}

.saleson-mobile-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.saleson-mobile-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.saleson-mobile-card:hover {
  transform: translateY(-6px);
}

.saleson-icon {
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.saleson-mobile-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.saleson-mobile-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.saleson-arrow {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: #0b4cd6;
  letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 992px) {
  .saleson-mobile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .saleson-mobile-grid {
    grid-template-columns: 1fr;
  }

  .saleson-mobile-title {
    font-size: 26px;
  }
}
/*taxi portal*/
/* HERO SECTION */
.taxi-hero {
  background: #ffffff;
  padding: 50px 20px;
}

/* CONTAINER */
.taxi-hero-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT CONTENT */
.taxi-hero-content {
  max-width: 600px;
}

.taxi-hero-content h1 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.taxi-hero-content p {
  font-size: 17px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 35px;
}

/* CTA BUTTON */
.taxi-btn {
  display: inline-block;
  background: #173f8a;
  color: #ffffff;
  padding: 16px 38px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.taxi-btn:hover {
  background: #0f2f6e;
}

/* RIGHT IMAGE */
.taxi-hero-visual img {
  width: 100%;
  max-width: 520px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .taxi-hero-container {
    flex-direction: column;
    text-align: center;
  }

  .taxi-hero-content h1 {
    font-size: 34px;
  }

  .taxi-hero-visual img {
    max-width: 380px;
  }
}
/*mobile responsive*/

/* Tablets (≤992px) */
@media (max-width: 992px) {
  /* Hero section stacks */
  .taxi-hero-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .taxi-hero-content h1 {
    font-size: 34px;
  }

  .taxi-hero-content p {
    font-size: 16px;
  }

  .taxi-hero-visual img {
    max-width: 380px;
    margin: auto;
  }

  /* Features stack vertically */
  .taxi-help-container {
    flex-direction: column;
    gap: 30px;
  }

  .taxi-features {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  .taxi-features.right {
    text-align: center;
  }
}

/* Mobile (≤576px) */
@media (max-width: 576px) {
  /* Hero section smaller padding */
  .taxi-hero {
    padding: 30px 15px;
  }

  .taxi-hero-content h1 {
    font-size: 20px;
    text-align:left;
  }

  .taxi-hero-content p {
    font-size: 15px;
    margin-bottom: 25px;
    text-align: left;
  }

  .taxi-btn {
    padding: 14px 32px;
    font-size: 15px;
  }

  .taxi-hero-visual img {
    max-width: 100%;
  }

  /* Features spacing */
  .taxi-help h2 {
    font-size: 32px;
  }

  .title-line {
    width: 50px;
    margin-bottom: 40px;
  }

  .taxi-features {
    width: 100%;
    text-align: center;
  }
}
/*taxi features*/
.taxi-help {
  padding: 0px 0px;
  background: #ffffff;
  text-align: center;
}

.taxi-help h2 {
  font-size: 42px;
  font-weight: 700;
  color: #173f8a;
  margin-bottom: 10px;
}

.title-line {
  width: 60px;
  height: 4px;
  background: #1abc9c;
  display: block;
  margin: 15px auto 60px;
  border-radius: 10px;
}

/* MAIN CONTAINER */
.taxi-help-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-top: 50px;
}


/* FEATURE COLUMNS */
.taxi-features {
  width: 30%;
  text-align: left;
}

.taxi-features.right {
  text-align: left;
}

/* FEATURE ITEM */
.feature {
  margin-bottom: 50px;
  position: relative;
  padding-left: 20px;
}

.feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 40px;
  background: #173f8a;
  border-radius: 10px;
}

.feature h3 {
  font-size: 22px;
  color: #000;
  margin-bottom: 10px;
}

.feature p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* CENTER APP IMAGE */
.taxi-app {
  width: 35%;
  position: relative;
}

.taxi-app img {
  width: 100%;
  max-width: 320px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .taxi-help-container {
    flex-direction: column;
  }

  .taxi-features,
  .taxi-app {
    width: 100%;
    text-align: center;
  }

  .feature {
    padding-left: 0;
  }

  .feature::before {
    display: none;
  }
}
/*mobile responsive*/

/* Tablet & below */
@media (max-width: 992px) {

  .feature {
    padding-left: 0;
    text-align: center;
    margin-bottom: 35px;
  }

  /* Remove left line on small screens */
  .feature::before {
    display: none;
  }

  .feature h3 {
    font-size: 20px;
  }

  .feature p {
    font-size: 14px;
  }

  /* Center app image */
  .taxi-app {
    width: 100%;
    text-align: center;
    margin: 30px 0;
  }
  .taxi-help h2{
  font-size:28px;
   }
  .taxi-app img {
    max-width: 260px;
    margin: auto;
    display: block;
  }
}

/* Mobile */
@media (max-width: 576px) {

  .feature h3 {
    font-size: 18px;
  }

  .feature p {
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
  }

  .taxi-app img {
    max-width: 220px;
  }
}


/*dashboard overview*/
.dashboard-overview {
  padding: 50px 20px;
  background: #fff;
}

.dashboard-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT CONTENT */
.dashboard-content {
  width: 55%;
}

.dashboard-content h2 {
  font-size: 30px;
  font-weight: 700;
  color: #173f8a;
  margin-bottom: 15px;
}

.subtitle {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* POINTS */
.dashboard-points {
  list-style: none;
  padding: 0;
}

.dashboard-points li {
  margin-bottom: 22px;
  padding-left: 25px;
  position: relative;
}

.dashboard-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #1abc9c;
  font-weight: bold;
}

.dashboard-points strong {
  display: block;
  font-size: 17px;
  color: #000;
  margin-bottom: 4px;
}

.dashboard-points span {
  font-size: 15px;
  color: #666;
}

/* RIGHT IMAGE */
.dashboard-image {
  width: 45%;
  text-align: right;
}

.dashboard-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 0px;
  
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .dashboard-container {
    flex-direction: column;
    text-align: center;
  }

  .dashboard-content,
  .dashboard-image {
    width: 100%;
  }

  .dashboard-image {
    text-align: center;
  }

  .dashboard-points li {
    padding-left: 0;
  }

  .dashboard-points li::before {
    display: none;
  }
}
/*mobile responsive*/
/* Tablet & below */
@media (max-width: 992px) {

  .dashboard-container {
    flex-direction: column;
    gap: 35px;
    text-align: center;
  }

  .dashboard-content,
  .dashboard-image {
    width: 100%;
  }

  .dashboard-content h2 {
    font-size: 28px;
  }

  .subtitle {
    font-size: 15px;
    margin-bottom: 25px;
  }

  /* Points centered */
  .dashboard-points li {
    padding-left: 0;
    margin-bottom: 20px;
    text-align: left;
  }

  .dashboard-points li::before {
    display: none;
  }

  .dashboard-points strong {
    font-size: 16px;
  }

  .dashboard-points span {
    font-size: 14px;
  }

  /* Image centered */
  .dashboard-image {
    text-align: center;
  }

  .dashboard-image img {
    max-width: 420px;
    margin: auto;
  }
}

/* Mobile phones */
@media (max-width: 576px) {

  .dashboard-overview {
    padding: 30px 15px;
  }

  .dashboard-content h2 {
    font-size: 24px;
  }

  .subtitle {
    font-size: 14px;
    line-height: 1.6;
  }

  .dashboard-points strong {
    font-size: 15px;
  }

  .dashboard-points span {
    font-size: 13px;
  }

  .dashboard-image img {
    max-width: 100%;
  }
}

/*add trip*/
.add-trip-section {
  padding: 20px 20px;
  background: #ffffff;
}

.add-trip-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT IMAGE */
.add-trip-image {
  width: 50%;
}

.add-trip-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
 
}

/* RIGHT CONTENT */
.add-trip-content {
  width: 50%;
}

.add-trip-content h2 {
  font-size: 30px;
  font-weight: 700;
  color: #173f8a;
  margin-bottom: 15px;
}

.subtitle {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* POINTS */
.add-trip-points {
  list-style: none;
  padding: 0;
}

.add-trip-points li {
  margin-bottom: 22px;
  padding-left: 28px;
  position: relative;
}

.add-trip-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #1abc9c;
  font-weight: bold;
}

.add-trip-points strong {
  display: block;
  font-size: 17px;
  color: #000;
  margin-bottom: 4px;
}

.add-trip-points span {
  font-size: 15px;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .add-trip-container {
    flex-direction: column;
    text-align: center;
  }

  .add-trip-image,
  .add-trip-content {
    width: 100%;
  }

  .add-trip-points li {
    padding-left: 0;
    text-align: left;
  }

  .add-trip-points li::before {
    display: none;
  }
}
/*user reg*/
.user-registration {
  padding: 0px 0px;
  background: #fff;
}

.user-reg-container {
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT CONTENT */
.user-reg-content {
  width: 55%;
}

.user-reg-content h2 {
  font-size: 25px;
  font-weight: 700;
  color: #173f8a;
  margin-bottom: 15px;
}

.subtitle {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 35px;
}

/* POINTS */
.user-reg-points {
  list-style: none;
  padding: 0;
}

.user-reg-points li {
  margin-bottom: 22px;
  padding-left: 28px;
  position: relative;
}

.user-reg-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #1abc9c;
  font-weight: bold;
}

.user-reg-points strong {
  display: block;
  font-size: 17px;
  color: #000;
  margin-bottom: 4px;
}

.user-reg-points span {
  font-size: 15px;
  color: #666;
}

/* RIGHT IMAGE */
.user-reg-image {
  width: 45%;
  text-align: right;
}

.user-reg-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 0px;
  
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .user-reg-container {
    flex-direction: column;
    text-align: center;
  }

  .user-reg-content,
  .user-reg-image {
    width: 100%;
  }

  .user-reg-image {
    text-align: center;
  }

  .user-reg-points li {
    padding-left: 0;
  }

  .user-reg-points li::before {
    display: none;
  }
}
/*mobile responsive*/


/* Tablet & below */
@media (max-width: 992px) {

  .user-reg-container {
    flex-direction: column;
    gap: 35px;
    text-align: center;
  }

  .user-reg-content,
  .user-reg-image {
    width: 100%;
  }

  .user-reg-content h2 {
    font-size: 24px;
  }

  .subtitle {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .user-reg-points li {
    padding-left: 0;
    margin-bottom: 20px;
    text-align: left;
  }

  .user-reg-points li::before {
    display: none;
  }

  .user-reg-points strong {
    font-size: 16px;
  }

  .user-reg-points span {
    font-size: 14px;
  }

  /* Image centered */
  .user-reg-image {
    text-align: center;
  }

  .user-reg-image img {
    max-width: 420px;
    margin: auto;
    display: block;
  }
}

/* Mobile phones */
@media (max-width: 576px) {

  .user-registration {
    padding: 25px 15px;
  }

  .user-reg-content h2 {
    font-size: 22px;
  }

  .subtitle {
    font-size: 14px;
    line-height: 1.6;
  }

  .user-reg-points strong {
    font-size: 15px;
  }

  .user-reg-points span {
    font-size: 13px;
  }

  .user-reg-image img {
    max-width: 100%;
  }
}

/*taxi features*/
.taxi-sln-features {
  padding: 10px 10px;
  background: #fff;
  margin-bottom: 50px;
}

.taxi-sln-title {
  text-align: center;
  font-size: 34px;
  font-weight: 700;
  color: #1b3c73;
  margin-bottom: 60px;
}

.taxi-sln-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.taxi-sln-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.taxi-sln-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.taxi-sln-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  margin-bottom: 15px;
}

.taxi-sln-card h3 {
  font-size: 20px;
  color: #000;
  margin-bottom: 15px;
}

.taxi-sln-card ul {
  padding-left: 18px;
  margin-bottom: 20px;
}

.taxi-sln-card ul li {
  font-size: 14.5px;
  color: #555;
  margin-bottom: 8px;
}

.taxi-sln-card a {
  font-size: 14px;
  font-weight: 600;
  color: #1b73e8;
  text-decoration: none;
}

.taxi-sln-card a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .taxi-sln-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .taxi-sln-grid {
    grid-template-columns: 1fr;
  }

  .taxi-sln-title {
    font-size: 26px;
  }
}
/*vechile sln ptns*/
.check-points {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}

.check-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #22c55e; /* green check */
  font-weight: bold;
}
/*header*/
.main-header .main-box{
    background:linear-gradient(180deg, #F58220 0%, #BE1E2D 100%);
}


.sairam-site-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  margin-left: 20px;
}

/*home*/
.sairam-wc-section {
  padding: 30px 4%;
}

.sairam-wc-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Left Content */
.sairam-wc-content {
  flex: 1;
}

.sairam-wc-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
  background: linear-gradient(180deg, #F58220 0%, #BE1E2D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sairam-wc-content h2 {
  font-size:34px;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 700;
  background: linear-gradient(180deg, #F58220 0%, #BE1E2D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sairam-wc-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  text-align:left;
}

/* Right Image */
.sairam-wc-image {
  flex: 1;
  text-align: right;
}

.sairam-wc-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 900px) {
  .sairam-wc-container {
    flex-direction: column;
    text-align: center;
  }

  .sairam-wc-image {
    text-align: center;
  }

  .sairam-wc-content h2 {
    font-size: 32px;
    text-align:left;
  }
}
/*service*/
.sairam-services-section {
  padding: 10px 5%;
}

.sairam-services-header {
  text-align: center;
  margin-bottom: 50px;
}

.sairam-services-header h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(180deg, #F58220 0%, #BE1E2D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sairam-services-header p {
  font-size: 16px;
  color: #555;
}

/* Cards Grid */
.sairam-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Individual Card */
.sairam-service-card {
  padding: 30px;
  border-radius: 16px;
  border: 1px solid #eee;
  background: #fff;
  transition: all 0.3s ease;
}

.sairam-service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
  background: linear-gradient(180deg, #F58220 0%, #BE1E2D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sairam-service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.sairam-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 992px) {
  .sairam-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sairam-services-grid {
    grid-template-columns: 1fr;
  }

  .sairam-services-header h2 {
    font-size: 30px;
  }
}
/*sairam chooseus*/
.sairam-glass-section {
  padding: 27px 6%;
}

.sairam-glass-header {
  text-align: center;
  margin-bottom: 50px;
}

.sairam-glass-header h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(180deg, #F58220 0%, #BE1E2D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sairam-glass-header p {
  font-size: 16px;
  color: #555;
}

/* Grid */
.sairam-glass-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Glass Card */
.sairam-glass-card {
  padding: 35px 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.sairam-glass-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
}

.sairam-glass-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
  color: #cb3529;
}

.sairam-glass-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.sairam-glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (max-width: 992px) {
  .sairam-glass-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sairam-glass-grid {
    grid-template-columns: 1fr;
  }

  .sairam-glass-header h2 {
    font-size: 30px;
  }
}
.btn {
    display: inline-block;
    background-color:#f26522 !important;
}
.btn:hover {
    border: 1px solid #fff;
    background-color: #fff;
}
/*about us*/
.sairam-story-section {
  padding:39px 5%;
}

.sairam-story-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Left Image */
.sairam-story-image {
  flex: 1;
}

.sairam-story-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
}

/* Right Content */
.sairam-story-content {
  flex: 1.2;
}

.sairam-story-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  background: linear-gradient(180deg, #F58220 0%, #BE1E2D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sairam-story-content h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
}

.sairam-story-content h3 {
  font-size: 22px;
  margin: 25px 0 12px;
  font-weight: 600;
}

.sairam-story-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
  text-align: left;
}

/* Responsive */
@media (max-width: 900px) {
  .sairam-story-container {
    flex-direction: column;
  }

  .sairam-story-image img {
    max-width: 100%;
  }

  .sairam-story-content h2 {
    font-size: 30px;
  }
}
/*history*/
.sairam-history-section {
  padding:37px 8%;
  background: #fdfdfd;
}

.sairam-history-header {
  text-align: center;
  margin-bottom: 60px;
}

.sairam-history-header h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(180deg, #F58220 0%, #BE1E2D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sairam-history-header p {
  font-size: 16px;
  color: #555;
}

/* Container for cards */
.sairam-history-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Each history card */
.sairam-history-card {
  position: relative;
  padding: 30px 25px 25px 60px;
  border-left: 4px solid #F58220;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.sairam-history-card::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 20px;
  width: 20px;
  height: 20px;
  background: #BE1E2D;
  border-radius: 50%;
  border: 4px solid #F58220;
}

.sairam-history-date {
  font-weight: 700;
  font-size: 16px;
  color: #BE1E2D;
  margin-bottom: 8px;
}

.sairam-history-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
  .sairam-history-card {
    padding-left: 50px;
  }

  .sairam-history-date {
    font-size: 14px;
  }
}
/*sairam mvv*/
.sairam-mvv-border-section {
  padding:36px 6%;
}

.sairam-mvv-header {
  text-align: center;
  margin-bottom: 60px;
}

.sairam-mvv-header h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(180deg, #F58220 0%, #BE1E2D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sairam-mvv-header p {
  font-size: 16px;
  color: #555;
}

/* Grid */
.sairam-mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Transparent Card with Thick Gradient Border */
.sairam-mvv-card {
  position: relative;
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  color: #333;
  background: rgba(255, 255, 255, 0.05); /* slightly transparent */
  transition: all 0.3s ease;
  overflow: hidden;
}

.sairam-mvv-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 3px; /* thickness of border */
  border-radius: 20px;
  background: linear-gradient(180deg, #F58220 0%, #BE1E2D 100%);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude; 
  pointer-events: none;
}

.sairam-mvv-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 18px;
  
}

.sairam-mvv-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 600;
}

.sairam-mvv-card p {
  font-size: 15px;
  line-height: 1.7;

}

.sairam-mvv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
  .sairam-mvv-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sairam-mvv-grid {
    grid-template-columns: 1fr;
  }

  .sairam-mvv-header h2 {
    font-size: 30px;
  }
}
/*service pg*/
.sairam-services-section {
  padding: 20px 3%;
}

.sairam-services-header {
  text-align: center;
  margin-bottom: 35px;
}

.sairam-services-header h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(180deg, #F58220 0%, #BE1E2D 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sairam-services-header p {
  font-size: 16px;
  color: #555;
}

/* Grid */
.sairam-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.sairam-service-card {
  position: relative;
  padding: 32px 25px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.sairam-service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 3px;
  border-radius: 18px;
  background: linear-gradient(180deg, #F58220 0%, #BE1E2D 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

.sairam-service-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.sairam-service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
}

.sairam-service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* Responsive */
@media (max-width: 992px) {
  .sairam-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sairam-services-grid {
    grid-template-columns: 1fr;
  }

  .sairam-services-header h2 {
    font-size: 30px;
  }
}
.sairam-service-icon {
  width:250px;
  height:200px;
  margin-bottom: 18px;
}

.gallery-item {
    box-shadow:none;
}
.lni-map-marker-5::before {
    content: "\eb4d";
    color: #df5a25;
}
.lni-telephone-1::before {
    content: "\ec07";
    color: #df5a25;
}
.lni-envelope-1::before {
    content: "\eacd";
    color: #df5a25;
}
.copyright-text.text-center {
    background-color: #f06422;
}


/* Logo */
.vs_mobile_lg img {
    height: 50px;
    width: auto;
}
/* Center Site Name */
#logo-center-content-title {
    flex: 1;
    display: flex;
    justify-content: center;
}


/* Site Name Text */
.sairam-site-name {
    font-size:19px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
    text-align: center;
    line-height: 1.2;
    margin-left: -140px;
}
@media (max-width: 480px) {
      p.sairam-site-name {
        font-size: 17px;
        color: #c7340c;
        font-family: Georgia !important;
        letter-spacing: 1px;
        text-align: left;
        margin-left: -20%;
        Top: 11px;
        width: 100%;
        position: absolute;
        margin-top: -2px;
    }
}
/* Hamburger Menu */
.mobile-header .menu-toggle,
.mobile-header .vs-menu-toggle {
    margin-left: auto;
}
/*header banner*/
.page-banner-two {
    background-color: #e76823 !important;
    background-image: unset;
}
#slider-bottom-heading-banner h3 {
    font-size: 26px;
    font-family: 'revicons' !important;
    letter-spacing: 2px !important;
}
@media only screen and (max-width: 1023px) {
    .nav-outer .mobile-nav-toggler {
        padding: 5px 0;
        background: #ffffff00;
    }
}
@media (max-width: 768px) {
    .btn {
        max-width: 186px !important;
    }
}
@media (max-width: 767px) {
  .contact-demo-style h3 {
    font-size: 27px;
    text-align: center;
  }

  .contact-demo-style .btn {
    width: 100%;
    margin-top: 10px;
  }
}
.btn:hover {
    border: 1px solid #fff !important;
    color:#fff;
}
@media (max-width: 768px) {
    #slider-bottom-heading-banner h3 {
        font-size: 18px;
        letter-spacing: 1.5px !important;
    }
}

/* Mobile devices */
@media (max-width: 480px) {
    #slider-bottom-heading-banner h3 {
        font-size: 14px;
        letter-spacing: 1px !important;
        text-align: center;
        line-height: 1.4;
    }
}
@media (max-width: 768px) {
    #slider-bottom-heading-banner h3 {
        font-size: 18px;
        letter-spacing: 1.5px !important;
    }
}

