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

    body, html {
      height: 100%;
      font-family: 'Poppins', sans-serif;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

    .hero-slider {
      position: relative;
      width: 100vw;
      height: 100vh;
      overflow: hidden;
    }

    .slide {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding-left: 6vw;
    }

    .slide.active {
      opacity: 1;
      z-index: 1;
    }

    .slide .content {
      color: #000;
      text-align: left;
      max-width: 800px;
      padding: 20px;
      z-index: 2;
      opacity: 0;
    }

    .slide.active .content {
      animation: slideInLeft 1s ease forwards;
    }

    .slide.active .content h1 {
      font-size: 40px;
      margin-bottom: 20px;
      animation: slideInLeft 1s ease forwards;
    }

    .slide.active .content p {
      font-size: 1.25rem;
      animation: slideInLeft 1.3s ease forwards;
    }

    .slide.active .content .hero-btn {
      animation: fadeInBtn 2s ease forwards;
    }

    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-40px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

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

    .hero-btn {
      display: inline-block;
      margin-top: 20px;
      padding: 12px 30px;
      font-size: 16px;
      font-weight: bold;
      color: white;
      text-decoration: none;
      border: none;
      border-radius: 30px;
      background: linear-gradient(150deg, rgba(198, 44, 232, 1) 29%, rgba(87, 132, 199, 1) 80%, rgba(83, 121, 237, 1) 100%);
      opacity: 0;
      transition: all 0.4s ease;
    }

    .hero-btn:hover {
      opacity: 0.85;
    }

    .logo {
      position: absolute;
      top: 20px;
      left: 40px;
      width: 50px;
      height: 50px;
      z-index: 1000;
    }

    .menu-toggle {
      position: absolute;
      top: 20px;
      right: 40px;
      width: 50px;
      height: 50px;
      background-color: #ffc800;
      border-radius: 50%;
      cursor: pointer;
      z-index: 1002;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .menu-toggle span {
      position: absolute;
      width: 22px;
      height: 2px;
      background-color: #000;
      transition: all 0.3s ease;
    }

    .menu-toggle span:nth-child(1) {
      transform: translateY(-6px);
    }

    .menu-toggle span:nth-child(2) {
      transform: translateY(0);
    }

    .menu-toggle span:nth-child(3) {
      transform: translateY(6px);
    }

    .menu-toggle.active span:nth-child(1) {
      transform: rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
      transform: rotate(-45deg);
    }
	h1{
		font-family: 'Poppins', sans-serif;
	}	

	.card-container{
	position:flex;
	background-color:white;
	margin:10px;
	border-radius: 15px;
	}
	
/*--------------------------------------------------------------
# Navbar Menu Section
--------------------------------------------------------------*/

    .menu {
      position: absolute;
      top: 20px;
      right: 120px;
      transform: scale(0);
      transform-origin: top right;
      background: rgba(255, 255, 255, 0.3);
      backdrop-filter: blur(10px);
      padding: 20px 30px;
      border-radius: 40px;
      display: flex;
      gap: 25px;
      align-items: center;
      opacity: 0;
      pointer-events: none;
      transition: transform 0.4s ease, opacity 0.3s ease;
      z-index: 1001;
    }

    .menu.active {
      transform: scale(1);
      opacity: 10;
      pointer-events: auto;
    }

    .menu a {
      text-decoration: none;
      color: #000;
      font-weight: bold;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .menu a:hover {
      color: #ffc800;
    }

    .menu.active a {
      opacity: 1;
      transform: translateY(0);
    }

    .menu.active a:nth-child(1) { transition-delay: 0.1s; }
    .menu.active a:nth-child(2) { transition-delay: 0.2s; }
    .menu.active a:nth-child(3) { transition-delay: 0.3s; }
    .menu.active a:nth-child(4) { transition-delay: 0.4s; }
    .menu.active a:nth-child(5) { transition-delay: 0.5s; }
    .menu.active a:nth-child(6) { transition-delay: 0.6s; }

    @media (max-width: 768px) {
      .menu {
        flex-direction: column;
        align-items: flex-start;
        top: 80px;
        right: 20px;
        border-radius: 20px;
	  }
		.service-list li {
        width: 45%;
		}
	}

	@media (max-width: 480px) {
		.service-list li {
			width: 100%;
		}
	}	

/*--------------------------------------------------------------
# Three Babla Animation Section
--------------------------------------------------------------*/

    .idea-section {
      height: 100vh;
      background: url("images/abst_bnr_5.png") no-repeat center center;
      background-size: cover;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      flex-direction: row;
      gap: 40px;
      flex-wrap: wrap;
      padding: 0 20px;
    }

    .top-image {
      position: absolute;
      top: 20px;
      width: 100%;
      text-align: center;
      z-index: 2;
    }

    .top-image img {
      max-width: 400px;
      height: auto;
      opacity: 0;
      transform: scale(0.5);
      padding-top: 100px;
    }

    .char {
      opacity: 0;
      transform: translateY(50px);
      text-align: center;
      width: 30%;
      position: relative;
      z-index: 1;
      margin-top: 120px;
    }

    .char img {
      max-width: 300px;
      height: auto;
      margin-top: 120px;
    }

    .large-char img {
      max-width: 380px;
      margin-bottom: 70px;
    }

    .char p {
      font-family: 'GlamourGirl', cursive;
      opacity: 0;
      transform: translateY(20px);
      margin-top: 10px;
      font-weight: bold;
      color: #000;
      font-size: 50px;
    }

    /* ✅ Mobile Responsiveness */
    @media screen and (max-width: 768px) {
      .idea-section {
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 40px;
        height: auto;
        padding-top: 160px;
        padding-bottom: 80px;
      }

      .char {
        width: 100%;
        margin-top: 0;
      }

      .char img {
        max-width: 220px;
        margin-top: 0;
      }

      .large-char img {
        max-width: 240px;
        margin-bottom: 40px;
      }

      .char p {
        font-size: 28px;
      }

      .top-image {
        position: relative;
        top: 0;
        padding-bottom: 40px;
      }

      .top-image img {
        max-width: 220px;
        padding-top: 0;
        margin-bottom: 20px;
      }
    }
	
/*--------------------------------------------------------------
# Sevice Section
--------------------------------------------------------------*/
	
	 .service-section {
      padding: 60px 20px;
    }

    .service-container {
      max-width: 1200px;
      margin: auto;
      background: #fff;
      border-radius: 16px;
      padding: 40px 20px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    }

    .service-list {
      display: grid;
      grid-template-columns: repeat(6, 1fr); /* default: 6 in a row */
      gap: 20px;
      align-items: center;
      justify-content: center;
      list-style: none;
      padding: 0;
    }

    .service-item {
      text-align: center;
    }

    .icon-wrapper {
      position: relative;
      width: 60px;
      height: 60px;
      margin: 0 auto 10px;
    }

    .icon-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: opacity 0.4s ease;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 2;
    }

    .hover-text {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border-radius: 50%;
      background: #ffc800;
      color: #333;
      font-size: 10px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      z-index: 1;
      transition: opacity 0.4s ease;
      text-align: center;
      padding: 5px;
    }

    .icon-wrapper:hover img {
      opacity: 0;
    }

    .icon-wrapper:hover .hover-text {
      opacity: 1;
    }

  
    }

    /* 👇 Portrait View: 2 items per row */
    @media screen and (orientation: portrait) {
      .service-list {
        grid-template-columns: repeat(2, 1fr);
      }

   
    }

    /* 👇 Landscape View: 6 items per row (reset) */
    @media screen and (orientation: landscape) {
      .service-list {
        grid-template-columns: repeat(6, 1fr);
      }

     
    }

    /* Small mobile fallback (optional): 1 item per row */
    @media (max-width: 480px) {
      .service-list {
        grid-template-columns: 1fr;
      }


    }

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }
    .animate-fadeIn {
      animation: fadeIn 1s ease-out both;
    }
    .card {
      background-color: #fbbf24;
      border-radius: 12px;
    }
    .modal-bg {
      background-color: rgba(0, 0, 0, 0.7);
    }
    .underline-block::after {
      content: "";
      display: block;
      width: 60px;
      height: 5px;
      background-color: #facc15;
      margin-top: 0.5rem;
      margin-left: 0;
    }

    @media (max-width: 640px) {
      h1 {
        font-size: 1.75rem;
      }
      .card {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.75rem;
      }
    }
/*--------------------------------------------------------------
# About us
--------------------------------------------------------------*/  
  
	.about-section {
      background: url('your-background.png') no-repeat center center;
      background-size: cover;
      padding: 40px 20px 130px;
      text-align: center;
      position: relative;
      border-top-left-radius: 20px;
      border-top-right-radius: 20px;
	  border-bottom-right-radius: 20px;
	  border-bottom-left-radius: 20px;
      background-color: #d3d3d3;
      overflow: visible;
	  margin:10px;
    }

    .about-section h2 {
      font-size: 28px;
      margin-bottom: 20px;
      font-weight: bold;
      color: #000;
    }

    .about-section p {
      max-width: 900px;
      margin: 0 auto;
      font-size: 16px;
      line-height: 1.6;
      color: #111;
    }

    .team-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 150px;
      margin-top: -60px; /* pulls the team section out of grey */
      position: relative;
      z-index: 5;
    }

    .team-card {
      background-color: #fff;
      width: 220px;
      padding: 20px 10px 30px;
      border-radius: 20px;
      border: 2px solid #d3d3d3;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      text-align: center;
      position: relative;
      transition: transform 0.3s ease;
    }

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

    .profile-circle img{
      width: 80px;
      height: 80px;
      border-radius: 50%;
      margin: 0 auto;
      position: absolute;
      top: -30px;
      left: 50%;
      transform: translateX(-50%);
    }
	

    .team-name {
      margin-top: 70px;
      font-size: 18px;
      font-weight: bold;
      color: #000;
      opacity: 0;
      animation: fadeInUp 1s ease forwards;
    }

    .team-role {
      font-size: 14px;
      color: #555;
      margin-top: 5px;
    }

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

    @media (max-width: 768px) {
      .team-card {
        width: 100%;
        max-width: 250px;
      }
    }
	
/*--------------------------------------------------------------
# Why Choose us Section
--------------------------------------------------------------*/	
	
	 .why-choose-us {
      background: #fff;
      padding: 60px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .why-choose-us h1 {
      text-align: center;
      font-size: 32px;
      color: #333;
    }

	.why-choose-us h2 {
      text-align: center;
      font-size: 18px;
      margin-bottom: 50px;
      color: #333;
    }
	
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }

    .feature {
      background: #f1f1f1;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
      text-align: left;
      transition: transform 0.3s ease;
    }

    .feature:hover {
      transform: translateY(-5px);
	}
	.feature:hover {
	  background-color: #ffffff; /* hover background */
	  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* optional: gives a subtle elevation */
	}

    .feature i {
      font-size: 32px;
      color: #ffc107;
      margin-bottom: 15px;
    }

    .feature h4 {
      font-size: 20px;
      margin: 10px 0;
      color: #333;
      opacity: 0; /* Required for animation */
    }

    .feature p {
      font-size: 14px;
      color: #555;
    }

    @media(max-width: 600px) {
      .why-choose-us h2 {
        font-size: 24px;
      }
    }
	
/*--------------------------------------------------------------
# Client Logos Section
--------------------------------------------------------------*/
	
	.client-logos {
      background: #f7f7f7;
      padding: 60px 20px;
      text-align: center;
    }
	
	.client-logos h2{
		margin-bottom:50px;
    }

    .client-logos .section-title {
      font-size: 28px;
      font-weight: 600;
      color: #333;
    }

    .client-logo {
      max-height: 80px;
      max-width: 150px;
	  object-fit: contain;
      filter: grayscale(0%);
      transition: filter 0.3s ease;
      padding: 10px;
    }

    .client-logo:hover {
      filter: grayscale(0%);
    }

    .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;

    }

    .swiper.clientSwiper {
      padding: 10px 0;
      max-width: 1200px;
      margin: auto;
    }

/*--------------------------------------------------------------
# Testimonial Section
--------------------------------------------------------------*/	
	.testimonial-section {
	  background: url('images/abst_bnr_1.png') center center/cover no-repeat;
	  padding: 60px 20px;
	  text-align: center;
	  position: relative;
	}

	.testimonial-section::after {
	  content: "";
	  position: absolute;
	  inset: 0;
	  z-index: 1;
	   background: rgba(0, 0, 0, 0.1); 
	}
	.testimonial-slider {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: 20px;
		max-width: 1200px;
		margin: 0 auto;
		position: relative;
		z-index: 2;
		margin-top:50px;
	}

	.testimonial {
		background: #fff;
		border-radius: 12px;
		padding: 20px;
		flex: 0 1 calc(50% - 20px);
		box-shadow: 0 0 15px rgba(0,0,0,0.1);
		opacity: 0;
		transform: translateY(20px);
	}
	.testimonial-title {
		  position: relative;
		  z-index: 2;
		  font-size: 28px;
		  font-weight: 600;
		  color: #fff;
	}
	.testimonial-title h1{
		 margin-bottom:50px;
	}

	.client-photo {
	  position: relative;
	  width: 50px;
	  height: 50px;
	  margin: 0 auto 10px;
	}

	.client-photo img {
	  width: 100%;
	  height: 100%;
	  object-fit: contain;
	  transition: opacity 0.4s ease;
	  position: absolute;
	  top: 0;
	  left: 0;
	  z-index: 2;
	}


	
	      
	.quote {
		font-style: italic;
		font-size: 16px;
		margin-bottom: 15px;
		min-height: 50px;
	}

	.client-name {
		font-weight: bold;
		font-size: 18px;
		margin-bottom: 5px;
	}

	.client-position {
		color: #777;
		font-size: 14px;
	}
	.Portfolio-p-6{
		padding: 100px;
		 border-top-left-radius: 20px;
      border-top-right-radius: 20px;
	  border-bottom-right-radius: 20px;
	  border-bottom-left-radius: 20px;
	  margin:10px;
	}
	.Portfolio-p-6 h1 {
		margin-bottom: 0px;
	}
	
	.gap-6 {
		gap: 1.5rem;
		padding: 50px;
	}
    @media(max-width: 768px) {
     .testimonial {
      flex: 0 1 100%;
    }
  }

/*--------------------------------------------------------------
# Quotation Section
--------------------------------------------------------------*/
	.quotation-section {
      position: relative;
      background-image: url('images/abst_bnr_6.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      padding: 100px 20px;
      color: white;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      text-align: left;
    }

    .quotation-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 30px;
      width: 100%;
      max-width: 1200px;
      z-index: 1;
      flex-wrap: wrap;
    }

    .quotation-text {
      flex: 1 1 400px;
      animation: slideLeft 1.5s ease-out infinite alternate;
      font-size: 3rem;
      font-weight: 600;
	  color:#000;
    }

    .quotation-image {
      flex: 1 1 300px;
      text-align: center;
    }

    .quotation-image img {
      max-width: 100%;
      height: auto;
      animation: bounceBlink 2s infinite;
    }

    @keyframes slideLeft {
      0% { transform: translateX(-30px); opacity: 0.7; }
      100% { transform: translateX(0); opacity: 1; }
    }

    @keyframes bounceBlink {
      0%, 100% { transform: translateY(0); opacity: 1; }
      50% { transform: translateY(-15px); opacity: 0.6; }
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
      .quotation-content {
        flex-direction: column;
        text-align: center;
      }
      .quotation-text {
        animation: slideLeftMobile 1.5s ease-out infinite alternate;
        font-size: 1.5rem;
      }

      @keyframes slideLeftMobile {
        0% { transform: translateX(-10px); opacity: 0.7; }
        100% { transform: translateX(0); opacity: 1; }
      }
    }

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

	.contact-wrapper {
	  max-width: 1200px;
	  margin: 0 auto;
	  padding: 50px 20px;
	  background-color: white;
	  border-radius: 20px;
	}

	.contact-top {
	  text-align: center;
	  margin-bottom: 50px;
	}

	.contact-top h3 {
	  font-weight: 400;
	  font-size: 1.5rem;
	  margin-bottom: 10px;
	}

	.contact-top h2 {
	  font-weight: 700;
	  font-size: 2rem;
	  margin-bottom: 20px;
	}

	.contact-top p {
	  font-size: 1rem;
	  max-width: 700px;
	  margin: 0 auto;
	  line-height: 1.6;
	}

	.contact-cards {
	  display: flex;
	  gap: 30px;
	  flex-wrap: wrap;
	  justify-content: center;
	}

	.contact-card {
	  flex: 1 1 300px;
	  background-color: white;
	  border-radius: 20px;
	  padding: 30px;
	  text-align: center;
	  box-shadow: 0 1px 5px rgba(0,0,0,0.05);
	  transition: transform 0.3s ease;
	}

	.contact-card:hover {
	  transform: translateY(-10px);
	}

	.circle-icon {
	  width: 70px;
	  height: 70px;
	  border-radius: 50%;
	  border: 2px solid #333;
	  margin: 0 auto 20px;
	  display: flex;
	  align-items: center;
	  justify-content: center;
	  font-size: 24px;
	  transition: transform 0.4s ease;
	}

	.contact-card:hover .circle-icon {
	  transform: rotate(10deg) scale(1.1);
	}

	.contact-card:hover{
	  box-shadow: 0 10px 20px rgba(0,0,0,0.01);
	  background-color:#f7f7f7;
	}
	.contact-card h3 {
	  font-weight: 700;
	  font-size: 1.2rem;
	  margin-bottom: 10px;
	}

	.contact-card p {
	  font-size: 1rem;
	  color: #222;
	}

	.circle-icon:hover {
	  border: 3px solid #ffc800;
	}

/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/

 .footer {
      background-color: #f7f7f7;
      position: relative;
      padding: 50px 20px 0;
      color: #000;
      overflow: hidden;
    }

    .footer::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: url('images/abst_logo.svg') no-repeat right center;
      background-size: 250px auto;
      opacity: 0.06;
      z-index: 0;
    }

    .footer-container {
      display: grid;
      grid-template-columns: 35% 20% 20% 25%;
      gap: 40px;
      max-width: 1200px;
      margin: auto;
      position: relative;
      z-index: 1;
    }

    .footer-logo img {
      width: 60px;
      margin-bottom: 10px;
    }

    .footer h4 {
      margin-bottom: 15px;
      font-size: 18px;
    }

    .footer p, .footer li, .footer a {
      font-size: 14px;
      color: #000;
      text-decoration: none;
      line-height: 1.8;
    }

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

    .footer .social-icons {
      display: flex;
      gap: 10px;
      margin-top: 15px;
    }

    .social-icons a {
      background: #fff;
      border: 2px solid orange;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: orange;
      animation: bounce 2s infinite;
    }

    .social-icons a:nth-child(1) { animation-delay: 0s; }
    .social-icons a:nth-child(2) { animation-delay: 0.5s; }
    .social-icons a:nth-child(3) { animation-delay: 1s; }
    .social-icons a:nth-child(4) { animation-delay: 1.5s; }

    .social-icons a:hover {
      background: orange;
      color: white;
    }

    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    .footer-bottom {
      margin-top: 40px;
      background: orange;
      color: #000;
      text-align: center;
      padding: 10px;
      font-weight: 500;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .footer-container {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 600px) {
      .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .footer-logo, .social-icons {
        justify-content: center;
      }
    }
    
    .footer-useful ul li a {
    color: black;
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-useful ul li a:hover {
    color: #ffc800;
  }
/*--------------------------------------------------------------
# WhatsApp Button Styles
--------------------------------------------------------------*/
    .whatsapp-button {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 999;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 15px;
      background-color: #25D366;
      border-radius: 50px;
      color: #fff;
      text-decoration: none;
      box-shadow: 0 5px 15px rgba(0,0,0,0.3);
      animation: bounce 2s infinite;
      opacity: 0;
      animation: fadeIn 1s ease forwards 1s;
      font-family: 'Poppins', sans-serif;
    }

    .whatsapp-button img {
      width: 28px;
      height: 28px;
    }

    .whatsapp-text {
      font-weight: bold;
      white-space: nowrap;
      display: none;
    }

    .whatsapp-button:hover .whatsapp-text {
      display: inline;
    }

    /* Bounce Animation */
    @keyframes bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-6px); }
    }

    /* Fade In Animation */
    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }