/* First Section Starts Here */
.abc {
  margin: 0;
  font-family: 'Anton', sans-serif;
  width: 100%;
  color: #111;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 6% 0 4%;
  box-sizing: border-box;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-image: url('/assets/images/bannerWebgrossS.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(244, 242, 242, 0);
  z-index: 1;
}

.content {
  position: relative;
  z-index: 2;
}

.hy {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.2;
  padding-right: 10%; /* Reduced to prevent crowding */
  padding-top: 10%;
  width: 100%;
}

.highlight {
  color: #EF6026;
  font-size: 4.5rem;
  transition: opacity 0.5s ease;
  display: inline-block;
  position: relative;
  min-width: 25ch; /* Ensures layout doesn't shift */
}

/* Cursor effect */
#typing-text::after {
  content: '|';
  animation: blink 1s steps(1) infinite;
  margin-left: 5px;
}



@keyframes blink {
  50% { opacity: 0; }
}

/* Desktop - 1296px and above */
@media screen and (min-width: 1296px) {
  .description {
    font-size: 29px;
    color: #666;
    max-width: 100%;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    z-index: 2;
    position: relative;
    margin-left: 320px;
  }

  .hy {
    font-size: 8rem;
    font-weight: 400;
    line-height: 1.2;
    height: 12rem;
    font-family: 'Anton', sans-serif;
    padding-right: 10%; /* Adjusted */
    position: relative;
  }

  .highlight {
    font-size: 7.5rem;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    z-index: 2;
    min-width: 25ch; /* Consistent across screen sizes */
  }
}

/* Tablet - up to 768px */
@media (max-width: 768px) {
  .hy {
    font-size: 36px;
    text-align: center;
    padding-right: 0;
  }

  .highlight {
    font-size: 2.5rem;
    min-width: auto;
    padding-left: 0;
  }

  .logo-description-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin: 60px 20px 0;
  }

  .description {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 90%;
    text-align: center;
  }

  .logo-circle {
    width: 150px;
    height: 150px;
  }

  .circle-center {
    width: 70px;
    height: 70px;
  }

  .arrow svg {
    width: 40px;
    height: 40px;
  }

  .hero {
    padding: 20px;
    min-height: auto;
  }

  .content {
    padding-left: 5%;
  }
}

/* Mobile - up to 480px */
@media (max-width: 480px) {
  .hy {
    font-size: 28px;
    text-align: center;
    margin-top: 60px;
    padding-right: 0;
  }

  .highlight {
    font-size: 30px;
    padding-left: 0;
    min-width: auto;
  }

  .logo-description-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 5px 10px 0;
  }

  .description {
    font-size: 16px;
    line-height: 1.5;
    max-width: 95%;
    text-align: center;
    margin-left: 0;
  }

  .logo-circle {
    width: 60px;
    height: 60px;
  }

  .circle-svg {
    width: 75%;
    height: 75%;
  }

  .circle-center {
    width: 60px;
    height: 60px;
  }

  .arrow svg {
    width: 30px;
    height: 30px;
  }

  .hero {
    padding: 6px;
    min-height: 40vh;
  }

  .content {
    padding-left: 0;
  }
}

  /*FIRST SECTION ENDS HERE  */

/* ------------------------------------------------------------------------------------- */

  /* SECOND SECTION STARTS HERE */
  .marquee-container {
    width: 100%;
    background-color: #ff6200;
    overflow: hidden;
    white-space: nowrap;
    padding: 32px 0;
}
.marquee-text {
    display: inline-block;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    font-size: 40px;
    color: #fff;
    animation: marquee 20s linear infinite;
    position: relative;
    left: 0;
}
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Tablet Optimization */
@media (max-width: 768px) {
  .marquee-container {
    padding: 24px 0;
  }

  .marquee-text {
    font-size: 24px;
  }
}

/* Mobile Optimization */
@media (max-width: 480px) {
  .marquee-container {
    padding: 18px 0;
  }

  .marquee-text {
    font-size: 18px;
  }
}
  /* SECOND SECTION ENDS  HERE */

  /* ---------------------------------------------------------------------- */

  /* THIRD SECTION STARTS HERE  */
 
  .thirdSec {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    background-color: #fff;
  }
  
  .containers {
    max-width: 100%;
    padding: 7% 9%;
    height: 80%;
  }
  
  .who-we-ares {
    text-align: center;
  }
  
  .who-we-ares h2 {
    font-family: 'Poppins',sans-serif;
    font-weight: 600;
    font-size: 34px;
    color:#333 ;
    text-transform: uppercase;
  }
  
  /* .who-we-ares h1 {
    font-family: 'Poppins',sans-serif;
    font-weight: 800;
    font-size: 66px;
    color: #ff6200;      
    margin-bottom: 80px;
    margin-top: -25px;
  } */
  .who-we-ares h1 {
    font-family: 'Poppins',sans-serif;
    font-weight: 800;
    font-size: 34px;
    color: #ff6200;      
    margin-bottom: 26px;
    margin-top: -15px;
  }

  .contents {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 9%;
  }
  
  .imagess {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .top-images-container {
    display: flex;
    gap: 20px;
  }
  
  .top-image {
    width: 40%;
    height: 268px;
    border-radius: 15px;
    object-fit: cover;
    margin-top: 85px;
    outline: 15px solid #fff;
  }

  .top-images {
    width: 60%;
    height: 400px;
    border-radius: 15px;
    object-fit: cover;
    outline: 15px solid #fff;
  }
  
  .bottom-image {
    width: 69%;
    height: 210px;
    border-radius: 15px;
    object-fit: cover;
    margin-top:-50px;
    margin-left:31%;
    z-index: 2;
    outline-style: solid;
    outline-color:#fff ;
    outline-width:15px;
  
  }
  
  .right-sections {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .text-sections {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: 'Poppins',sans-serif;
    font-weight: 600;
    font-size:16px;

  }
  
  .text-sections p {
    text-align: justify;
    font-size: 1.2rem;
    color:#070425 ;
    line-height: 1.8rem;
    margin: 0;
    font-family: 'Poppins',sans-serif;
    font-weight: 500;
  }
  
  .features-experiences {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top:6%;
    
  }
  
  .featuress {
    list-style: none;
    padding: 0;
    flex: 1;
    font-family: 'Anton',sans-serif;
    font-weight: 300;
  }
  
  .featuress li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 2.0rem;
    color: #333;
    font-family: 'Poppins',sans-serif;
    font-weight: 600;
    line-height: 2.2rem;
  }
  
 
  
  .more-about-uss {
    display: inline-block;
    font-size: 1.2rem;
    padding: 2% 2%;
    background-color: #ff6200;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    align-self: flex-start;
  }
  
  .experiences {
    text-align: center;
    border: 1px solid #ff6200;
    border-radius: 10px;
    padding: 20px;
    color: #000;
    font-size: 36px;
    font-weight: bold;
    flex: 0 0 150px;
  }
  
  .experiences span {
    display: block;
    font-size: 1.2rem;
    color: #000;
    font-weight: bold;
  }

 /* Tablet: max-width 768px */
@media (max-width: 768px) {
  .containers {
    padding: 60px 20px;
  }

  .contents {
    display: flex;
    flex-direction: column;
  }

  .imagess {
    order: 1;
  }

  .right-sections {
    order: 2;
    margin-top: 40px;
  }

  .top-image,
  .top-images {
    width: 100%;
    height: auto;
    margin-top: 20px;
    outline-width: 10px;
  }

  .bottom-image {
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-top: 0;
    outline-width: 10px;
  }

  .features-experiences {
    flex-direction: row;
    gap: 20px;
  }

  .featuress {
    border-right: none;
    padding-bottom: 20px;
  }

  .featuress li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 2.2rem;
}

  .experiences {
    font-size: 28px;
    margin-top: 20px;
  }
}

/* Mobile: max-width 480px */
@media (max-width: 480px) {
  .containers {
    padding: 30px 30px;
  }

  .who-we-ares h1 {
    font-size: 28px;
    margin-bottom: 30px;
    font-family: 'Poppins',sans-serif;
    font-weight: 800;
    margin-top: -6px;
  }

  .who-we-ares h2 {
    font-size: 14px;
    font-family: 'Poppins',sans-serif;
    font-weight: 600;
  }
  .top-images-container {
    display: flex;
    gap: 9px;
  }

  .top-image
  {
    width: 41%;
    height: 130px;
    margin-left: 0;
    margin-top: 92px;
    outline-width: 8px;
    margin-bottom: 56px;
  }

  .top-images
  {
    width: 57%;
    /* height: auto; */
    margin-left: 0;
    margin-top: 20px;
    outline-width: 8px;
  }

  .bottom-image {
    width: 65%;
    height: auto;
    margin-left: 108px;
    margin-top: -66px;
    outline-width: 8px;
  }

  .text-sections {
    font-size: 16px;
  }

  .text-sections p {
    font-size: 16px;
    font-family:'Poppins',sans-serif;
    font-weight: 500;
  }

  .more-about-uss {
    font-size: 13px;
    padding: 12px 113px;
    font-family: 'Poppins',sans-serif;
    font-weight: 500;
  }

  .experiences {
    font-size: 24px;
    padding: 15px;
  }

  .experiences span {
    font-size: 14px;
  }
}


/* Third Section Ends Here */

/* -------------------------------------------------------------------- */

/* Fourth Section Starts Here */
.containerp {
  background-color: #E8E8E8;
  padding: 40px;
  border-radius: 15px;
  max-width: 95%;
  margin: 3% auto;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.badge-containerp {
  position: relative;
  width: 100px;
  height: 100px;
}

.badgep {
  background-color: #ff6200;
  color: white;
  font-size: 0.9em;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.badgep span {
  font-size: 2.5em;
  font-weight: bold;
}


.logo-gridp {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.logo-row-wrapper {
  overflow: hidden;
  width: 100%;
}

.logo-rowp {
  display: flex;
  width: max-content;
  white-space: nowrap;
}

.logo-rowp-1 {
  animation: scroll-left 20s linear infinite;
}

.logo-rowp-2 {
  animation: scroll-right 20s linear infinite;
}

.logo-rowp div {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-size: 1.2em;
  color: #666;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  min-width: 170px;
  margin-right: 20px;
}

.logo-rowp img {
  height: 100px;
  min-width: 18%;
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  margin-right: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  object-fit: contain;
}


@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.headerp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom:9%;
  padding:0 5%;
}

.header-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.headerp h1 {
  font-family: 'Poppins',sans-serif;
  font-weight: 600;
  font-size: 2.5em;
  color: #333;
  margin: 0;
}

.contentp {
  margin: 32px 0 0 0;
  color: #070425;
  line-height: 1.6;
  text-align: justify;
  max-width: 600px;
  font-family: 'Poppins',sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
}

.logo-circle {
  position: relative;
  width: 200px;
  height: 200px;
}

.circle-svg {
  width: 100%;
  height: 100%;
  animation: rotateText 10s linear infinite; /* New animation */
  transform-origin: center center; /* Ensure it rotates around its center */
}

@keyframes rotateText {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}


.circle-svg text {
  fill: #000;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.circle-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  background: #ff6200;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px rgba(255, 98, 0, 0.5);
}

.arrow svg {
  stroke: #fff;
  width: 50px;
  height: 40px;
}

/* Tablet view: up to 768px */
@media (max-width: 768px) {
  .containerp {
    padding: 30px 20px;
  }

  .headerp {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }

  .headerp h1 {
    font-size: 2em;
    font-family: 'Poppins',sans-serif;
    font-weight:600;
  }

  .contentp {
    max-width: 100%;
    font-size: 0.95em;
  }

  .badge-containerp {
    width: 80px;
    height: 80px;
  }

  .badgep {
    width: 80px;
    height: 80px;
    font-size: 0.8em;
  }

  .badgep span {
    font-size: 2em;
  }

  .logo-rowp div,
  .logo-rowp img {
    min-width: 140px;
    height: 80px;
    padding: 10px;
    margin-right: 15px;
  }

  .circle-center {
    width: 70px;
    height: 70px;
  }

  .arrow svg {
    width: 40px;
    height: 30px;
  }
}

/* Mobile view: up to 480px */
@media (max-width: 480px) {
  .containerp {
    padding: 20px 15px;
    margin:8% 8%;
  }

  .headerp {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 10px;
  }

  .headerp h1 {
    font-size: 1.7em;
    font-family:'Poppins',sans-serif;
    font-weight:600;
  }

  .contentp {
    font-size: 0.9em;
    max-width: 100%;
    font-family: 'Poppins',sans-serif;
    font-weight: 400;
  }

  .badge-containerp {
    width: 70px;
    height: 70px;
  }

  .badgep {
    width: 70px;
    height: 70px;
    font-size: 0.7em;
  }

  .badgep span {
    font-size: 1.7em;
  }

  .logo-rowp div,
  .logo-rowp img {
    min-width: 97px;
    height: 60px;
    padding: 8px;
    margin-right: 10px;
  }

  .circle-center {
    width: 63px;
    height: 64px;
    margin-left: 32%;
  }

  .arrow svg {
    width: 44px;
    height: 36px;
  }

  .logo-circle {
    position: relative;
    width: 129px;
    height: 148px;
}

  .circle-svg {
    width: 100%;
    height: 100%;
    margin: 0 33%;
}
}

/* Fourth section ends here  */

/* --------------------------------------------------- */



/* sixth section starts here */
.containerd {
  max-width: 93%;
  margin: 2% auto;
}

.header-rowd {
  display: flex;
  gap: 20px;
  margin-bottom: 70px;
}

.service-headerd {
  flex: 1;
  padding: 40px 15px;
  background: #ff6200;
  color: #fff;
  border: 2px solid #dee2e6;
  border-radius: 15px;
  font-size: 35px;
  font-family:'Poppins',sans-serif;
  font-weight:600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.service-headerd.actived {
  /* background: url('../assets/images/datacentrepic.webp') no-repeat center center; */
  background-size: cover;
  color: white;
  border: 2px solid #000;
  background-color: #000;
}

/**This is overlay Text for services in our service**/
.overlayText{
  top:0;
  left:0;
  right:0;
  bottom:0;
  z-index: 2;
  background-color: rgba(243, 234, 234, 0.5);
}
.subcategoriesd {
  display: none;
  flex-wrap: wrap;
  gap: 20px;
}
.subcategoriesd.opend {
  display: flex;
}
.subcategoryd {
  flex: 1 1 calc(33.33% - 20px);
  background-color: #E8E8E8;
  padding: 3%;
  border: 1px solid #1e1f20;
  border-radius: 10px;
  display: flex;
  box-sizing: border-box;
  height: 300px; /* Fixed card height */
}

.subcategory-contentd {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.subcategory-contentd h3 {
  margin: 0 0 10px 0;
  font-size: 1.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  text-align: left;
  flex-shrink: 0; /* Prevent shrinking */
}

.subcategory-contentd p {
  margin: 0;
  color: #070425;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  text-align: left;
  overflow-y: auto; /* Enables scroll when too long */
  flex: 1; /* Take remaining space */
}


.sixthSection{
  margin-bottom:0%;
}

.h2sixth{
  color:#333;
  font-size:4.6rem;
  font-family:'Poppins',sans-serif;
  font-weight: 800;
  margin-bottom:40px;
}

/* Tablet (≤768px) */
@media (max-width: 768px) {
  .header-rowd {
    flex-direction: column;
    gap: 15px;
  }

  .service-headerd {
    font-size: 28px;
    padding: 30px 10px;
    font-family: 'Poppins',sans-serif;
    font-weight:600;
  }

  .subcategoryd {
    flex: 1 1 calc(50% - 10px);
    padding: 50px 10px;
  }

  .subcategoryd h3 {
    font-size: 16px;
    font-family: 'Poppins',sans-serif;
    font-weight: 600;
  }

  .subcategoryd p {
    font-size: 13px;
    font-family: 'Poppins',sans-serif;
    font-weight: 500;
  }

  .h2sixth {
    font-size: 32px;
  }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
 .sixthSection{
  margin:8% 8% 5% 8%;
}
 
  .service-headerd {
    font-size: 22px;
    padding: 22px 8px;
  }

  .subcategoryd {
    flex: 1 1 100%;
    padding: 50px 10px;
    flex-direction: column;
    text-align: center;
  }

  .subcategoryd img.icond {
    margin: 0 0 10px 0;
  }

  .subcategoryd img.arrowd {
    display: none;
  }

  .subcategory-contentd {
    align-items: center;
  }

  .h2sixth {
    font-size: 26px;
    text-align: center;
    font-family: 'Poppins',sans-serif;
    font-weight: 800;
  }
}


/* sixth section ends here  */


/* ------------------------------------------------- */
/* Eigth section starts here */
 .xyz {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 4% 1%;
    }

    .h1eight {
      font-size: 2.9em;
      margin-bottom: 2%;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
    }

    .mslider-container {
      width: 100%;
      max-width: 1200px;
      overflow: hidden;
      position: relative;
    }

    .mslider-wrapper {
      display: flex;
      transition: transform 0.6s ease-in-out;
    }

    .mtestimonial {
      background-color: white;
      border: 0.1px solid #333;
      border-radius: 20px;
      padding: 25px;
      margin: 0 10px;
      width: 375px;
      height: 275px;
      box-sizing: border-box;
      flex-shrink: 0;
      text-align: left;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .mstars {
      color: #ff6200;
      font-size: 2em;
      margin-bottom: 10px;
    }

    .mtestimonial p {
      font-size: 1em;
      color: #070425;
      margin-bottom: 42px;
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
     text-align: justify;
    }

    .mauthor {
      display: flex;
      align-items: center;
    }

    .mauthor-info h4 {
      margin: 0;
      font-size: 1.4em;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
    }

    .mnav-buttons {
      display: flex;
      justify-content: center;
      margin-top: 50px;
      gap: 10px;
    }

    .mnav-buttons button {
      background-color: #ff6200;
      border: none;
      color: white;
      font-size: 2.3em;
      padding: 0px 18px;
      margin: 0 10px;
      cursor: pointer;
      border-radius: 10px;
      transition: background-color 0.3s;
    }

    .mnav-buttons button:hover {
      background-color: #e55b00;
    }

    .mnav-buttons button:disabled {
      background-color: #ccc;
      cursor: not-allowed;
    }

    @media (max-width: 768px) {
      .h1eight {
        font-size: 2em;
        margin-bottom: 10%;
      }

      .mtestimonial {
        width: 90%;
        margin: 0 5%;
        height: auto;
      }

      .mstars {
        font-size: 1.5em;
      }

      .mtestimonial p {
        font-size: 0.95em;
        margin-bottom: 20px;
      }

      .mauthor-info h4 {
        font-size: 1.2em;
      }

      .mnav-buttons {
        margin-top: 30px;
      }

      .mnav-buttons button {
        font-size: 1.8em;
        padding: 5px 15px;
      }
    }


/* Eight section ends here */



/*END SECTION  */
.bodyend{
      margin: 0;
      padding: 0;
      font-family: Poppins, sans-serif;
      background-color: #fff;
      color: #000;
      height: 80vh;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      position: relative;
    }

    .containerEnd {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .textEnd {
      display: flex;
      align-items: center;
      font-size: 5rem;
      font-family: 'Poppins',sans-serif;
      font-weight: 600;
      line-height: 1;
    }

    .textEnd span {
      margin: 0 20px;
    }

    .businessEnd {
      font-family: 'Poppins', sans-serif;
      font-size: 5rem;
      font-weight: 600;
      font-weight: normal;
      margin-top: 20px;
    }

    .image-frameEnd {
      width: 300px;
      height: 120px;
      background-color: white;
      border-radius: 75px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 20px;
      overflow: hidden;
    }

    .image-frameEnd img {
      width: 300px;
      height: 140px;
      object-fit: cover;
      border-radius: 75px;
      transition: opacity 0.5s ease-in-out;
    }

    .buttonEnd {
      background-color: #ff6200;
      color: white;
      padding: 20px 30px;
      border: none;
      border-radius: 5px;
      font-size: 1.4rem;
      font-family: 'Poppins',sans-serif;
      font-weight: 600;
      cursor: pointer;
      margin-top: 60px;
      transition: background-color 0.3s;
    }

    .buttonEnd:hover {
      background-color: #333;
    }

    .iconEnd {
      position: absolute;
      bottom: 20px;
      right: 20px;
      width: 30px;
      height: 30px;
      background-color: white;
      border-radius: 5px;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
    }

/* Mobile Responsiveness */
    @media (max-width: 768px) {
   
      .bodyend{
      margin: 0;
      padding: 0;
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      background-color: #fff;
      color: #333;
      height: 60vh;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      position: relative;
    }


  .textEnd {
    font-size: 4rem;
    flex-direction: column;
    margin-bottom: 20px;
     font-family: 'Poppins',sans-serif;
    font-weight:600;
  }

  .textEnd span {
    margin: 10px 0;
  }

  .businessEnd {
    font-size: 3rem;
    text-align: center;
  }

  .image-frameEnd {
    width: 100px;
    height: 50px;
    border-radius: 25px;
    margin:10px 0px;
  }

  .image-frameEnd img {
    width: 100px;
    height: 50px;
    border-radius: 25px;
    margin:10px 0px;
  }

  .buttonEnd {
    padding: 15px 25px;
    font-size: 1.1rem;
    margin-top: 40px;
  }

  .iconEnd {
    width: 25px;
    height: 25px;
    bottom: 10px;
    right: 10px;
  }
}

@media (max-width: 480px) {
  .textEnd {
    font-size: 3rem;
    font-family: 'Poppins',sans-serif;
    font-weight:600;
  }

  .businessEnd {
    font-size: 2.5rem;
    font-family: 'Poppins',sans-serif;
    font-weight: 600;
  }

  .buttonEnd {
    padding: 12px 20px;
    font-size: 1rem;
  }
}
  
/* whatsapp cta button in navbar */
/* Hide on desktop by default */

.whatsapp-cta {
  display: none;
}

/* Mobile styles */
@media (max-width: 768px) {
  .whatsapp-cta {
    display: inline-block;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    transition: transform 0.3s;
    border-radius: 50%; /* Optional */
  }

  .whatsapp-cta:hover {
    transform: scale(1.1);
  }

  .whatsapp-cta img {
    width: 48px;
    height: 48px;
    display: block;
  }
}

/* third section of cards css */

.section3se{
    background-color: black;
}

.services-sectionse {
  padding: 40px;
  text-align:left;
  color: #fff;
  font-family: 'Poppins',sans-serif;
}

.services-sectionse h3 {
  font-size: 20px;
  margin-bottom: 10px;   
  font-weight: 400;
  font-family: 'Poppins',sans-serif;
}

.services-sectionse h2 {
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 600;
  font-family: 'Poppins',sans-serif;
}

.services-gridse {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1334px;
  margin: 0 auto;
}

.service-cardse {
  position: relative;
  height: 350px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease-in-out;
}

/* Move card up on hover */
.service-cardse:hover {
  transform: translateY(-10px);
}

/* Overlay: Dark gradient at top, fading to transparent */
.service-cardse::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}

/* On hover: Make bottom area brighter, retain top dimness */
.service-cardse:hover::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.1) 30%, rgba(0, 0, 0, 0) 100%);
}

/* Card title styling */
.card-titlese {
  position: absolute;
  top: 20px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  z-index: 2;
  color: white;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  padding: 5px 5px;
  border-radius: 4px;
  transition: color 0.3s ease-in-out;
}


/* Tablet (max-width: 1024px) — 2 cards per row */
@media (max-width: 1024px) {
  .services-gridse {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-cardse {
    height: 300px;
  }

  .card-titlese {
    font-size: 16px;
    top: 16px;
  }

  .services-sectionse h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .services-sectionse h3 {
    font-size: 18px;
  }
}

/* Mobile (max-width: 600px) — 1 card per row */
@media (max-width: 600px) {
  .services-gridse {
    grid-template-columns: 1fr;
  }

  .service-cardse {
    height: 250px;
  }

  .card-titlese {
    font-size: 15px;
    top: 14px;
  }

  .services-sectionse {
    padding: 20px;
  }

  .services-sectionse h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .services-sectionse h3 {
    font-size: 16px;
  }
}

/* ///////////////////////////////////////////////////////////////////////////// */

/* Contact Form Section */

.sectionbody {
      margin: 0;
      padding: 0;
      font-family: "Poppins", sans-serif;
      background: #ffffff;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 120vh;
    }
    .contact-section {
        display: flex;
        max-width: 1000px;
        width: 100%;
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    }

    .contact-left {
        flex: 1;
        background: #121212;
        color: #fff;
        padding: 60px 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .contact-left h2 {
        font-size: 2.6rem;
        margin-bottom: 15px;
       font-family: 'Poppins', sans-serif;
       font-weight: 800;
    }

    .contact-left p {
        font-size: 1rem;
        opacity: 0.9;
        line-height: 1.6;
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
    }

    .contact-right {
        flex: 1.3;
        padding: 40px;
        background: #f9fbfd;
    }

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

    .form-row {
        display: flex;
        gap: 15px;
        margin-bottom: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        padding: 12px;
        border-radius: 6px;
        border: 1px solid #ddd;
        font-size: 1rem;
        margin-bottom: 15px;
        outline: none;
        transition: border 0.3s ease;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
        border-color: #c99700;
    }

    .contact-form textarea {
        resize: none;
        min-height: 100px;
    }

    .contact-form button {
        background: darkorange;
        color: #fff;
        border: none;
        padding: 14px;
        border-radius: 6px;
        font-size: 1rem;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .contact-form button:hover {
        background: #a67c00;
    }

    .disclaimer {
        margin-top: 15px;
        font-size: 0.85rem;
        color: #555;
    }

    .disclaimer a {
        color: #000;
        text-decoration: underline;
    }

    @media (max-width: 900px) {
        .contact-section {
            flex-direction: column;
        }
        .contact-left, .contact-right {
            flex: none;
            width: 100%;
        }
    }