   body {
            margin: 0;
            padding: 0;
           font-family: "DM Sans", sans-serif;
        }
a{
	color:#212529 !important;
	    text-decoration: none !important;
}

        /* Background Image Section Above Navbar */
        .header-bg {
      
            /*background: url('https://via.placeholder.com/1200x300') no-repeat center center;*/
            background-size: cover;
        }

        /* Navbar Styles */
        .navbar {
            background-color: #f8f9fa;
            border-radius: 50px;
            margin: 20px 100px;
            transition: all 0.3s ease;
			padding:10px 45px
        }

        .navbar.fixed-top {
            margin: 0;
            border-radius: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: #333;
        }
		.navbar-brand img{
			width:120px
		}

        .navbar-brand span {
            color: #f5a623;
        }

        .nav-link {
            color: #666;
            font-weight: 500;
            margin-left: 15px;
            text-transform: uppercase;
			font-size: smaller;
        }

        .nav-link:hover {
            color: #333;
        }

        .btn-consultation {
            background-color: #f5a623;
            color: #000;
            border-radius: 25px;
            padding: 8px 15px;
            font-weight: 600;
            text-transform: uppercase;
			font-size:small
        }

        .btn-consultation:hover {
            background-color: #e69500;
        }

        /* Content Section for Scrolling */
        .content {
           /* height: 1500px;
            padding: 50px;
            background-color: #ffffff;
            text-align: center;*/
        }
		
		/* Banner  Section*/
		
		.banner-section h3{
			
			font-family: "DM Sans", sans-serif;
            font-weight: 400;
             font-style: normal;
			 font-size:103px;
			 color:#313944;
			 text-align:left;
			 line-height:90px
		}
		
		.banner-section h4{
			
			font-family: "DM Sans", sans-serif;
            font-weight: 600;
             font-style: normal;
			 font-size:40px;
			 color:#313944;
			 text-align:left;
			 line-height:32px
		}
		.banner-section .Banner-Head{
			padding-top:126px;
	
			position: relative;
            left: -22px;
		}
		.banner-section .btn-creative{
			background-color: #ebebeb;
            color: #000;
            border-radius: 25px;
            padding: 8px 12px;
            font-weight: 600;
            text-transform: uppercase;
			font-size:small;
			margin-bottom:15px
			
			
		}
		
	.line-bg {
  position: relative;
  padding: 40px 20px;
/* Optional background */
}

.line-bg::before {
    content: "";
    position: absolute;
       top: 72px;
    left: -8%;
    width: 2px;
    height: 300px;
    background-color: #000;
    transform: rotate(315deg);
    transform-origin: top center;
    z-index: 0;
    opacity: 1;
}
		

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .navbar {
                margin: 0;
                border-radius: 0;
            }
        }
		
		
/* company logo slidr */
 .logo-slider {
      overflow: hidden;
      white-space: nowrap;
      position: relative;
      background: #f8f9fa;
      padding: 20px 0;
    }

    .logo-slide-track {
      display: inline-block;
      white-space: nowrap;
      animation: scroll 20s linear infinite;
    }

    .logo-slide {
      display: inline-block;
      padding: 0 40px;
    }

    .logo-slide img {
      max-height: 35px;
      width: auto;
      filter: grayscale(100%);
      transition: filter 0.3s;
    }

    .logo-slide img:hover {
      filter: grayscale(0%);
    }

    @keyframes scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }
	
	/* About Us  */
	.about-heading {
      font-size: 12px;
      font-weight: bold;
      color: #3c3c89;
      letter-spacing: 1px;
      margin-bottom: 10px;
      text-transform: uppercase;
    }

    .about-text {
      font-size: 15px;
      color: #222;
	  padding:15px
    }

    .about-text strong {
      font-weight: 700;
    }

    .metric-box {
      font-size: 14px;
      color: #444;
    }

    .metric-number {
      font-size: 20px;
      font-weight: 500;
      color: #000;
    }

    .btn-about {
      background-color: #ffb400;
      color: #000;
      font-weight: 600;
      border: none;
      padding: 8px 24px;
      border-radius: 6px;
      transition: background 0.3s ease;
    }

    .btn-about:hover {
      background-color: #e09d00;
    }

    video {
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      width:100%;
      max-width: 268px;
	  margin-top:0px
    }

    .percent {
      font-size: 28px;
      font-weight: 500;
      margin-bottom: 16px;
    }

    .chart {
      display: flex;
      gap: 6px;
      height: 80px;
      align-items: flex-end;
    }

    .bar {
      width: 32px;
      border-radius: 6px;
      position: relative;
    }

    #bar1, #bar3 {
      background-color: #fbdd9a;
    }

    #bar2, #bar4 {
      background-color: #fff;
    }

    #bar2::after, #bar4::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: repeating-linear-gradient(
        45deg,
        rgba(255, 0, 0, 0.3),
        rgba(255, 0, 0, 0.3) 4px,
        transparent 4px,
        transparent 8px
      );
      pointer-events: none;
    }

    .corner-graphic {
      position: absolute;
      bottom: 10px;
      right: 20px;
      width: 50px;
      height: 30px;
    }

    .corner-graphic::before,
    .corner-graphic::after {
      content: "";
      position: absolute;
      background-color: #ffb400;
    }

    .corner-graphic::before {
      height: 4px;
      width: 40px;
      bottom: 0;
      left: 0;
    }

    .corner-graphic::after {
      height: 20px;
      width: 4px;
      right: 0;
      bottom: 0;
    }

    .card {
      border: none;
      box-shadow: none;
    }

    .card-header {
      padding-bottom: 0;
      font-weight: 500;
	  background:none;
	  border-color:#e5e5e5;
	  font-size:14px
    }
	/* End About Us */
	
	/* Service Section  */
	
	   .services-section {
      padding: 60px 0;
      background-color: #fff;
    }

    .highlight-box {
      border-radius: 16px;
      padding: 30px;
      color: #fff;
      font-weight: 500;
      position: relative;
    }

    .highlight-box.yellow {
      background: linear-gradient(to right, #ffc107, #f59e0b);
    }

    .highlight-box.dark {
      background-color: #1f2937;
	  border-bottom-right-radius: 48px;
	  height:180px
    }

    .highlight-box a {
      display: inline-block;
      margin-top: 30px;

      border-radius: 50%;
      background-color: white;
      color: #000;
      text-decoration: none;
      font-size: 18px;
      font-weight: bold;
	      height: 30px;
       width: 30px;
    }

    .services-list .active {
         background-color: #ffc107;
    color: #fff;
    font-weight: 400;
    border-radius: 12px;
    padding: 10px;
    }

    .services-list li {
         padding: 12px 0;
    border-bottom: 1px solid #e5e5e5;
    cursor: pointer;
    width: 70%;
    }

    .main-image {
      border-radius: 16px;
      overflow: hidden;
      max-height: 350px;
    }

    .main-image img {
      width: 100%;
      height: auto;
    }

    .text-overlay {
      position: absolute;
      bottom: 20px;
      left: 20px;
      color: white;
      font-size: 24px;
      font-weight: 600;
    }
/*  Work Section */

    .section-title {
     font-size: 48px;
    font-weight: 400;
    text-align: left;
    margin-bottom: 40px;
    letter-spacing: 2px;
    }

    .section-title .highlight {
    color: #f6a600;
    transform: rotate(-10deg);
    display: inline-block;
    font-size: 63px;
    position: relative;
    left: 5px;
    }

    .project-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .image-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
    }

    .image-wrapper img {
      width: 100%;
      height: 300px;
      display: block;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .project-card:hover .image-wrapper img {
      transform: scale(1.1);
    }

    .overlay-row {
      position: absolute;
      left: 0;
      right: 0;
      display: flex;
      padding: 0 15px;
    }

    .overlay-row.top {
      bottom: 65px;
      justify-content: flex-start;
    }

    .overlay-row.bottom {
      bottom: 20px;
      justify-content: left;
    }

    .overlay-text {
      background: #fff;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 600;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      white-space: nowrap;
	  margin-left:8px
    }

    .more-works {
      margin-top: 40px;
      text-align: center;
    }

    .more-works a {
      background: #f6a600;
    color: #000;
    padding: 3px 25px;
    font-weight: 400;
    text-decoration: none;
    border-radius: 24px;
    display: inline-block;
    margin-top: 18px;
     
    }
	.arrow-right
	{
		
		font-size: 50px;
    color: #f6a600;
	}

    @media (max-width: 768px) {
      .section-title {
        font-size: 32px;
      }
    }
	
	/* Choose Section  */
	
	
    .why-title {
      font-size: 36px;
      font-weight: 700;
      color: #222;
    }

    .why-subtitle {
      font-size: 16px;
      color: #444;
      max-width: 500px;
    }

    .accordion-button {
      background: none;
      font-size: 18px;
      font-weight: 600;
      color: #000;
      padding-left: 0;
    }

    .accordion-button:not(.collapsed) {
      color: #000;
      background: none;
      box-shadow: none;
    }

    .accordion-button:focus {
      box-shadow: none;
    }

    .accordion-body {
      padding-left: 0;
    }

    .accordion {
      border: none;
    }

    .accordion-item {
      border: none;
      border-bottom: 1px solid #ddd;
    }

    .arrow-icon {
      float: right;
      font-size: 20px;
    }
	.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' class='bi bi-arrow-up-short' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 12a.5.5 0 0 0 .5-.5V5.707l2.147 2.147a.5.5 0 0 0 .708-.708l-3-3-.007-.007a.498.498 0 0 0-.7.014l-3 3a.5.5 0 0 0 .708.708L7.5 5.707V11.5A.5.5 0 0 0 8 12'/%3E%3C/svg%3E"); /* custom arrow image */
  background-repeat: no-repeat;
   background-size: 20px;
  background-position: center;
  background-color: orange;

  height: 20px;
  width: 20px;
  border-radius: 50%;

  content: "";
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

/* Rotate arrow on open */
.accordion-button:not(.collapsed)::after {
	background-image: none !important;
  transform: rotate(180deg); /* optional: flip icon */
}

	
	/*.accordion-button::after{
		
		background-repeat: no-repeat;
    background-size: 15px;
    background-color: orange;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    padding: 0px;
    background-position: center;
	}*/

    /*.accordion-body img {
      max-width: 100px;
      margin-right: 15px;
      border-radius: 8px;
    }*/

    .content-with-image {
      display: flex;
      align-items: center;
      gap: 16px;
    }
	.choose-section .accprdian-text{
		
		font-size:14px;
		font-weight:400
	} 

    @media (max-width: 768px) {
      .why-title {
        font-size: 20px;
      }
    }
	
/* Top CTA Section */
    .consultation-section {
      background: linear-gradient(135deg, #5f7683, #b0bcc1);
      color: #fff;
      text-align: center;
      padding: 80px 20px 60px;
	  margin-top:150px;
	  margin-bottom:0px
    }

    .consultation-section h2 {
      font-size: 36px;
      font-weight: bold;
    }

    .consultation-section p {
      margin: 20px auto;
      max-width: 600px;
      font-size: 15px;
      color: #e8e8e8;
    }

    .consultation-section input[type="text"] {
      border-radius: 30px;
      border: none;
      padding: 10px 20px;
      max-width: 250px;
      margin-right: 10px;
      outline: none;
    }

    .consultation-section .btn-outline-light {
      border-radius: 30px;
      padding: 10px 24px;
      border: 2px solid #fff;
      font-weight: 600;
    }

    /* Footer Section */
    .footer {
      padding: 20px 20px;
      background: #fff;
      color: #000;
      border-top: 1px solid #eee;
	  padding-top:150px
    }

    .footer h4 {
      font-size: 45px;
      font-weight: 600;
	  font-family: "DM Sans", sans-serif;
    }

    .footer input[type="email"] {
      border: none;
      border-bottom: 1px solid #aaa;
      border-radius: 0;
      outline: none;
      padding: 5px;
      width: 100%;
      background: transparent;
    }

    .footer input::placeholder {
      color: #999;
    }

    .footer-links a {
      display: block;
      color: #000;
      text-decoration: none;
      margin-bottom: 6px;
      font-size: 14px;
    }

    .footer-links a:hover {
      text-decoration: underline;
    }

    .social-links a {
      margin-right: 10px;
      font-size: 14px;
      color: #000;
      text-decoration: none;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 40px;
      border-top: 1px solid #eee;
      padding-top: 20px;
      font-size: 14px;
      color: #555;
    }

    .footer-logo {
      font-weight: bold;
      font-size: 24px;
      margin-bottom: 10px;
    }

    .footer-logo span {
      color: #f6a600;
    }
	.footer-Copyright{
		color:#000
	}
	::placeholder {
  color: #333 !important;           /* Change placeholder text color */
  font-size: 26px !important;     /* Increase placeholder text size */
  opacity: 1 !important;            /* Ensure it's fully visible */
}
.footer-arrow{
	    font-size: 30px;
    position: relative;
    right: 60px;
    top: -7px;
}
.footer-logo img{
	width:150px
}
    @media (max-width: 767px) {
      .consultation-section h2 {
        font-size: 26px;
      }

      .footer h4 {
        text-align: center;
        margin-bottom: 20px;
		    font-size: 36px;
      }

      .footer input[type="email"] {
        text-align: center;
      }
	  .more-works{
     margin-top: 0px;
    margin-bottom: -36px;
	  }
	 
    }
	
	/* About Sction */
	    .about-us-section {
      padding: 40px 20px;
    }

    .about-badge {
      display: inline-block;
      padding: 4px 12px;
      font-size: 12px;
      background: #f3f3ff;
      color: #333;
      border-radius: 6px;
      font-weight: 600;
      margin-bottom: 16px;
    }

    .about-text {
      font-size: 14px;
      line-height: 1.7;
      color: #333;
	  text-align:justify
    }

    .about-button {
      background-color: #f6a600;
      color: black;
      font-weight: 600;
      border: none;
      border-radius: 6px;
      padding: 10px 20px;
      margin-top: 20px;
    }

    .left-card {
      background: #1d1d1f;
      color: #fff;
      padding: 16px;
      border-radius: 16px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .left-card img {
      width: 60px;
      height: 60px;
      border-radius: 8px;
      margin-bottom: 10px;
    }

    .highlight-text {
      font-size: 18px;
      font-weight: 600;
    }

    .highlight-text span {
      color: #f6a600;
    }

    .stat-box {
      /*background: #f9f9f9;*/
      border-radius: 10px;
      padding: 16px;
      text-align: center;
    }

    .chart-bar {
      width: 20px;
      height: 40px;
      background-color: #f6a600;
      display: inline-block;
      margin: 0 5px;
    }

    .chart-bar2 {
      height: 50px;
      background: repeating-linear-gradient(
        45deg,
        #ff0000,
        #ff0000 5px,
        #fff 5px,
        #fff 10px
      );
    }

    @media (max-width: 768px) {
      .about-text {
        text-align: center;
		        margin-top: -45px;
      }
	  .about-heading{
		  margin-top:-30px
	  }

      .left-card {
        text-align: center;
        align-items: center;
      }
	  .btn-about{
		  margin-top:0px !important;
	  }
	  .m-arrow{
		  display:none
	  }
	
    }
	
	/* Responsive  */
	
	@media (max-width: 768px) {
		
	.banner-section h3 {

    font-size: 72px;
    color: #313944;
    text-align: left;
    line-height: 65px;
}	
.banner-section .Banner-Head {
    padding-top: 16px;
    position: relative;
    left: 0px;
}
.top-section{
	text-align:center
}
video {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 100%;
    margin-top: 0px;
}
.metric-box {
    font-size: 24px;
    color: #444;
    margin-bottom: 10px !important;
}
.services-list li {
    padding: 12px 0;
  
    width: 100%;
}
.services-section {
     padding: 0px 0;
    
}
.services-section .row{
	padding:15px
}
.Work-section .container{
	padding-top:0px !important;
}
  .section-title {
    font-weight: bold;
    font-size: 2.2rem !important;
    margin-top: -57px;
    text-align: center;
	margin-bottom:0px
}
.project-card{
	margin-top:0px !Important;
}
.footer h4{
	
}	
.con-mob-text{
	font-size:14px;
}
.con-mob-text1{
	font-size:12px;
}
.faq-heading{
	font-size:1.5rem !important;
}
.section-title1{
	margin-top:0px !important;
}
.btn-consultation{
	display:none
}
.free-text{
	text-align:center
}	
	}
	
/* General navbar link styling */
.navbar .nav-link {
  color: #333;
  padding: 10px 15px;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}

/* Hover color for nav links */
.navbar .nav-link:hover,
.navbar .nav-item:hover .nav-link {
  color: #0d6efd;
}

/* Dropdown menu custom style */
.navbar .dropdown-menu {
  margin-top: 0;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border: none;
  background-color: #fff;
  display: none; /* Hide initially */
}

/* Show dropdown on hover */
.navbar .dropdown:hover .dropdown-menu {
  display: block;
}

/* Dropdown items styling */
.navbar .dropdown-menu .dropdown-item {
  padding: 10px 20px;
  color: #333;
  transition: background-color 0.2s ease;
}

.navbar .dropdown-menu .dropdown-item:hover {
  background-color: #f5a623;
  color: #000000;
}

/*  Work   */
.header-top .header-top-logo{
	width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #e5e5ee;
	display:none
}
.header-top h5{
	color:#31404a;
	font-weight:bold;
	font-size:30px
}

.work-slider img {
  height: 100%;
  object-fit: cover;
}
.carousel-inner .row {
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  background-size: 60% 60%;
  width: 40px;
  height: 40px;
}

/*  Work Idea */

.stat-dot {
  display: inline-block;
  background-color: #ffc107; /* yellow */
  border-radius: 50%;
  margin-left: 10px;
  vertical-align: middle;
}

.dot-1 {
  width: 60px;
  height: 60px;
}
.dot-2 {
  width: 45px;
  height: 45px;
}
.dot-3 {
  width: 30px;
  height: 30px;
}
.dot-4{
  width: 15px;
  height: 15px;
}

.thumb-stack img {
  opacity: 0.7;
  transition: all 0.3s ease;
}
.thumb-stack img:hover {
  opacity: 1;
}

.swipe-icon {
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
}
.justify-content-between1{
	justify-content:right;
}

  .video-hover-container video {
    height: 350px; /* initial height */
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, height 0.3s ease;
    border-radius: 0px;
	opacity:0.5
  }

  .video-hover-container:hover video {
    transform: scale(1.1); /* zoom effect */
    height: auto; /* increased height */
    z-index: 2;
	opacity:1
  }
  
  .video-hover-container1 video {
    height: 450px; /* initial height */
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, height 0.3s ease;
    border-radius: 0px;
	opacity:1;
	margin-top:30px
  }

  .video-hover-container1:hover video {
    transform: scale(1.1); /* zoom effect */
    height: auto; /* increased height */
    z-index: 2;
	opacity:1
  }
  
  /* Status */
      .stats-container {
      text-align: center;
    }

    .stats-header {
      background: linear-gradient(to right, #f9a825, #fbc02d);
      padding: 10px 20px;
      color: #333;
    }

    .stats-header h2 {
      margin: 0;
      font-size: 32px;
      font-weight: bold;
    }

    .stats-header span {
      font-size: 18px;
      font-weight: normal;
      margin-left: 10px;
	   position: relative;
       top: -7px;
    }

    .stats-body {
      background-color: #f2f2f2;
      display: flex;
      justify-content: space-around;
      padding: 30px 10px;
      gap: 40px;
      flex-wrap: wrap;
    }

    .stat-box {
      text-align: center;
    }

    .stat-number {
      font-size: 32px;
      font-weight: bold;
      color: #212121;
    }

    .stat-label {
      font-size: 14px;
      color: #666;
      text-transform: uppercase;
      margin-top: 5px;
    }
	
	/* How to Start   */
	
	
    .step-title {
      font-weight: bold;
      font-size: 3rem;
	  margin-top:70px;
	  color:#4f565f
    }

    .step-card {
      min-width: 300px;
      max-width: 300px;
      height: 240px;
      background: linear-gradient(to right, #f7ab05, #f7c525);
      margin-right: 20px;
      padding: 20px;
      color: #333;
      border-radius: 0px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      position: relative;
      margin-top: 60px;
      transition: opacity 0.3s ease;
    }

    .step-icon-container {
      width: 120px;
      height: 120px;
      background: #f6a600;
      border-radius: 0%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: -60px;
      left: 50%;
      transform: translateX(-50%);
      border: 2px solid #ecf0f1;
      z-index: 2;
    }

    .step-icon {
      font-size: 50px;
    }

    .step-nav button.active {
      background-color: #ffb347;
      color: white;
    }

    .step-container {
      overflow: hidden;
      width: 100%;
    }

    .step-slider {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }

    .step-card h5 {
      text-align: center;
      margin: 50px 0;
    }

    .step-card p {
      text-align: center;
      margin: -40px 0;
    }

    /* Opacity logic */
    .step-card.inactive {
      opacity: 0.5;
    }

    .step-card.active {
      opacity: 1;
    }
	.video-stat-section h2{
		color:#313944;
		font-size:60px;
		font-weight:500 !important;
	}
	.video-stat-section h3{
		color:#313944;
		font-weight:600 !important;
		font-size:40px
	}
	.video-stat-section p{
		color:#313944;
		font-weight:500 !important;
		font-size:10px
	}
	.real-section  h2{
		color:#313944;
		font-size:40px;
		font-weight:600;
		margin-top:40px;
		margin-bottom:40px
	}
	.real-section h3{
		font-size:40px
	}
	
	.how-start{
		margin-top:100px;
		margin-bottom:60px
	}
	
	/* Gks */
	
	 .gks-banner {
    height: auto;
    position: relative;
  }

  .banner-text {
    max-width: 40%;
    z-index: 2;
	top:22%;

  }
  .banner-text h1{
		font-size:40px !important;
	font-weight:600  
  }

  @media (max-width: 768px) {
    .banner-text {
      max-width: 80%;
      padding-left: 1rem;
    }
  }
  
  .cor-head h1{
	  font-size:30px;
	  font-weight:600;
	  padding-bottom:30px
  }
	
/* About */

.about-section {
      position: relative;
      background: url("../images/About.jpg") center center/cover no-repeat;
      height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
	  opacity:0.7
    }
    .about-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 35, 60, 0.6); /* dark overlay */
    }
    .about-content {
      position: relative;
      z-index: 2;
      text-align: center;
    }
    .about-content h1 {
      font-size: 3rem;
      font-weight: bold;
      letter-spacing: 2px;
    }
	
	  .badge-custom {
      background: #f9b506;
      color: #000;
      font-weight: 600;
      padding: 8px 16px;
      border-radius: 20px;
    }
	
  .about {
      padding: 80px 0;
      background: #f5f5f5;
      border-radius: 0 0 50% 50%;
	  height:700px
    }
	
	  .about h2 {
      font-size: 2.5rem;
      font-weight: 700;
    }
    .about h2 span {
      color: #f9b506; /* Yellow highlight */
    }
	
	  .custom-card {
      border: none;
      border-radius: 15px;
      box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
      padding: 20px;
      display: flex;
      align-items: center;
      background: #fff;
      height: 100%; /* Equal height */
    }
    .icon-circle {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: #2c3e50; /* dark background */
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 28px;
      margin-right: 20px;
      flex-shrink: 0;
    }
	
  .video-container {
      position: relative;
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
	  margin-top:-100px;
	 
	  
    }

    .video-thumbnail {
      width: 100%;
      cursor: pointer;
      display: block;
	   border-radius:16px
    }

    .video-player {
      width: 100%;
      display: none;
    }

    .play-button {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 60px;
      height: 60px;
      background-color: rgba(0, 0, 0, 0.7);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .play-button::after {
      content: "▶";
      font-size: 24px;
      color: white;
    }
	
	 .timeline-container {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      margin: 80px auto;
      width: 95%;
      flex-wrap: nowrap;
    }

    /* Wave Path */
    svg {
      position: absolute;
      top: 13%;
      left: 0;
      width: 100%;
      z-index: 0;
    }
    path {
      fill: none;
      stroke: #ccc;
      stroke-width: 2;
      stroke-dasharray: 4;
    }

    .circle-start {
      width: 150px;
      height: 20px;
      background-color: gold;
      border-radius: 50%;
      position: relative;
      z-index: 1;
    }

    .card-custom {
      background: #f5f5f5;
      border-radius: 20px;
      padding: 20px;
      text-align: center;
      margin: 0 40px;
      min-width: 220px;
      position: relative;
      z-index: 1;
    }

    .card-icon {
      width: 60px;
      height: 60px;
      background: gold;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: -50px auto 15px auto;
      font-size: 24px;
    }

    .airplane-icon {
      font-size: 32px;
      margin-left: 15px;
      color: black;
      z-index: 9999;
      position: relative;
    }
	
	.bi-send{
		    font-size: 30px;
    z-index: 99;
    position: relative;
    left: 10px;
    top: -6px;
}
	
/* Contact Us */

   /* Yellow Gradient Circle */
    .right-circle {
      background: linear-gradient(135deg, #f7a900, #fbd52b);
      border-radius: 50%;
         width: 550px;
    height: 550px;
      position: absolute;
      right: 0px;
      top: 50px;
      z-index: -1;
    }

    .contact-section {
      position: relative;
      padding: 30px 0;
    }

    .btn-consultation {
      background: #f7a900;
      color: #000;
      font-weight: 600;
      border-radius: 12px;
      padding: 10px 20px;
      font-size: 14px;
    }

    .form-control {
      border-radius: 6px;
    }

    .contact-form {
         margin-left: auto;
    margin-right: 94px;
    margin-top: 150px;
    width: 50%;
    }

    .info-box i {
      color: #f7a900;
      font-size: 22px;
      margin-right: 10px;
    }

    .submit-btn {
      background: #f5f5f5;
      font-weight: 600;
      border-radius: 8px;
    }

    .section-title {
      font-size: 48px;
      font-weight: 700;
    }
	  .faq-badge {
      background: white;
      border-radius: 25px;
      padding: 5px 15px;
      font-weight: 500;
      box-shadow: 0px 2px 6px rgba(0,0,0,0.1);
    }
	.faq{
	background:#f5f5f5;
	padding:15px
	
	}
    .faq-heading {
      font-size: 2rem;
      font-weight: 700;
    }
    .faq-heading span {
      color: #f7a600; /* Orange highlight */
    }
    .accordion-button {
      background-color: #eeeeee !important;
      border-radius: 0px !important;
      font-size: 1rem;
      font-weight: 500;
      box-shadow: none !important;
	  padding:15px
    }
    .accordion-button::after {
      content: "\f4fe"; /* Bootstrap Plus icon */
      font-family: "Bootstrap-icons";
      background-image: none;
      font-size: 1.2rem;
      font-weight: bold;
    }
    .accordion-button:not(.collapsed)::after {
      content: "\f2ea"; /* Bootstrap Dash icon */
    }
    .accordion-item {
      border: none;
      margin-bottom: 10px;
    }
	 .custom-banner {
      background: linear-gradient(to right, #f9a602, #f5c215); /* yellow gradient */
      color: #1c1c1c;
      font-weight: 600;
      text-align: center;
      padding: 10px 0;
      font-size: 18px;
    }
    .custom-banner span {
      font-weight: 700; /* bold text */
    }
  /* Service  */
  
     :root {
      --yellow:#ffb400;
      --circle-grad-top:#2e3a49;
      --circle-grad-bot:#7b7f8c;
      --dash:#d7d7d7;
    }
  .serice-sec{
  background:#e5e5e5;
  padding:30px
  
  }
    .card-custom1 {
      border: none;
      border-radius: 1px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      height: 500px;
      transition: transform 0.3s;
    }
    .card-custom:hover {
      transform: translateY(-5px);
    }
    .card-img-top {
      border-top-left-radius: 0px;
      border-top-right-radius: 0px;
      object-fit: cover;
      height: 200px;
    }
    .check-mark {
      color: #28a745;
    }
    .carousel-control-prev,
    .carousel-control-next {
      opacity: 1;
      width: 5%;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: #000;
      border-radius: 50%;
      padding: 10px;
    }
    .carousel-indicators [data-bs-target] {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: #6c757d;
      border: none;
      margin: 0 5px;
    }
    .carousel-indicators .active {
      background-color: #f7a600;
    }
    .carousel-indicators {
      bottom: -30px;
    }
   
    .cta-section {
      background-color: #f59e0b;
      color: #fff;
      padding: 20px;
      border-radius: 16px;
      text-align: left;
      margin-top: 20px;
	  margin-left:80px;
	  margin-right:80px
    }
    .cta-section .btn {
      background-color:#edf0f2;
      color:#000;
      border: none;
	  border-radius:16px;
	  font-size:12px;
	  font-weight:bold
    }
    .cta-section .btn:hover {
      background-color: #e5e7eb;
    }
	.free-call{
	font-size:10px;
	}
	.free-call1{
	font-size:25px;
	font-weight:700
	}
	.cta-section  p{
	font-size:10px;
	}
	  .timeline-wrap {
      position:relative;
     
    }

    /* dashed curve behind */
    .timeline-curve {
      position:absolute;
      top:60px;
      left:0;
      right:0;
      z-index:1;
      pointer-events:none;
    }
    .timeline-curve svg {
     width: 90%;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    display: block;
	    position: relative;
    }
    .timeline-curve path {
      fill:none;
      stroke:var(--dash);
      stroke-width:4;
      stroke-dasharray:8 10;
      stroke-linecap:round;
    }

    /* start dot */
    .start-dot {
      position:absolute;
        left: 50px;
        top: 150px;
      width:20px;
      height:20px;
      background:var(--yellow);
      border-radius:50%;
      z-index:2;
    }

    /* end send icon */
    .end-send {
      position:absolute;
      right:50px;
      top:130px;
      font-size:30px;
      color:#1f2937;
      z-index:2;
    }

    /* circles */
    .circle-step {
      width:280px;
      height:280px;
      border-radius:50%;
      background:linear-gradient(180deg,var(--circle-grad-top),var(--circle-grad-bot));
      color:#fff;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      text-align:center;
      position:relative;
      box-shadow:0 20px 40px rgba(0,0,0,.12);
      padding:20px;
      z-index:2;
    }

    .circle-step .step-badge {
      position:absolute;
      top:-15px;
      right:10%;
      transform:translateX(-50%);
      background:var(--yellow);
      color:#000;
      font-weight:700;
      font-size:16px;
      width:50px;
      height:50px;
      border-radius:50%;
      display:flex;
      align-items:center;
      justify-content:center;
    }

    .circle-step .step-icon {
      font-size:40px;
      margin-bottom:10px;
    }

    .circle-step h5 {
      font-weight:700;
      margin-bottom:8px;
    }

    .circle-step p {
      font-size:14px;
      line-height:1.4;
      margin:0;
      color:#e9edf3;
    }

    @media(max-width:992px){
      .circle-step { margin-bottom:40px; }
    }
	.ser-btn{
		background-color:#e2e1e1;
		color:#000;
		border-radius:16px;
		width:auto;
		    margin-left: auto;
    margin-right: auto;
	padding:10px
	    padding: 10px;
    font-size: 14px;
    font-weight: 600;
	}
	
	.service-section {
      position: relative;
      background: url("../images/servicebradcrume.jpg") center center/cover no-repeat;
      height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
	  opacity:0.7
    }
    .service-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 35, 60, 0.6); /* dark overlay */
    }
    .service-content {
      position: relative;
      z-index: 2;
      text-align: center;
    }
    .service-content h1 {
      font-size: 3rem;
      font-weight: bold;
      letter-spacing: 2px;
    }
	
	/* Article */
	   .section-title {
      font-weight: bold;
      font-size: 1.2rem;
    }
    .case-card {
      background-color: #8c8a9c; /* same gray color */
      border-radius: 15px;
      height: 200px;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      color: white;
      font-weight: 500;
      padding-bottom: 15px;
    }
    .carousel-control-prev,
    .carousel-control-next {
      width: 40px;
      height: 40px;
      background: white;
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      opacity: 1;
      border: 1px solid #000;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      filter: invert(1); /* black arrows */
    }
    .see-all {
      font-size: 0.9rem;
      font-weight: 500;
    }
	
	
	
    .article-card {
      position: relative;
      border-radius: 15px;
      overflow: hidden;
    }
    .article-card img {
      width: 100%;
      height: 200px;
     /* object-fit: cover;*/
      border-radius: 15px;
	  border: 1.5px solid #e5e5e5;
	  box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    }
    .article-btn {
      position: absolute;
      bottom: 15px;
      right: 0%;
      /*transform: translateX(-50%);*/
      background: #f7a900;
      border: none;
      padding: 5px 15px;
      border-radius: 5px;
     margin: 5px 30px;
    color: #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}
    }
    .carousel-control-prev,
    .carousel-control-next {
      width: 40px;
      height: 40px;
      background: white;
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      opacity: 1;
      border: 1px solid #000;
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      filter: invert(1); /* black arrows */
    }
    .see-all {
      font-size: 0.9rem;
      font-weight: 500;
    }
	.contact-form input::placeholder{
		font-size:18px !important;
	}
	.contact-form textarea::placeholder{
		font-size:18px !important;
	}
	
	/* Contact us */
	@media (max-width: 768px) {
		.right-circle{
			width: 100%;
    height: 100%;
		}
		.custom-banner{
			  padding: 6px 0;
              font-size: 13px;
		}
		.card-custom1{
			margin-bottom:15px
		}
		.cta-section{
			margin-left:0px;
			margin-right:0px
		}
		.free-call1{
		  font-size:24px	
		}
		.cta-section p {
    font-size: 14px;
    text-align: center;
    margin-top: 15px;
   }
   .timeline-curve{
	   display:none;
   }
   .start-dot{
	   display:none;
   }
   .end-send{
	    display:none;
   }
   .timeline-container{
	       display: contents;
   }
   .circle-start{
	 display:none;  
   }
   .bi-send{
	   display:none;   
   }
   .card-custom{
	   margin-bottom:50px;
	   margin-top: 30px;
   }
   .about{
	   height:auto;
	       padding: 36px 0;
   }
   .about h2 {
    font-size: 1.8rem;
    font-weight: 700;
   }
   .why-choose h1{
	       font-size: 24px;
    margin-top: -20px !important;
   }
   .about-curve{
	   display:none;
   }
   .accprdian-text{
	   display:none
   }
   .footer-small{
	   text-align:center
   }
   .footer-arrow {
    right: 30px;
    top: 0px;
    }
	.footer-addr{
		margin-top:15px !important;
	}
	.footer{
		padding-top:30px;
	}
	.consultation-section{
		margin-top: 30px;
	}
	.video-container{
		margin-top: -30px;
	}
	.about-section{
		height:200px
	}
	.service-section{
		height:200px;
	}
	.serice-sec{
		padding:15px
	}
	.work-slider img {
    margin-bottom: 15px;
   }
   
  .real-section h3{
	  font-size:25px;
  }
  .stats-header span{
	 font-size:16px; 
	 top:0px
  }
  .stats-body{
	  display: block;
	  padding: 15px 10px;
	     display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;
  }
  .real-section h2 {
    color: #313944;
    font-size: 30px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 26px;
}
.video-stat-section h2{
	font-size:36px
}
.counter-section{
margin-top:15px;	
}
  .how-start{
	  margin-top:0px;
  }
  .step-title{
	font-size: 2.3rem;
    margin-top: 25px;
  }
  
  .mobile-head{
	  font-size:20px;
	  margin-top:-30px
  }
  .boder-mobie{
	  border:0px !important;
  }
  .mobile-button{
	  text-align:center !important;
  }
  .step12{
	  margin-top:0px !important;
  }
	}
	
	.small-placeholder::placeholder {
		 font-size:14px !important; 
	}
	.small-placeholder{
		border: none;
  background-color: #f0eeee;
  font-size: 15px;
  padding: 15px 20px;
  width: 100%;
  border-radius: 0;
	}
	.share-btn{
		background:#e7e5e3;
		border:none;
		border-radius:0px
	}
	.share-btn .bi{
		color:#f7a600 !important;
	}
	.share-btn:hover{
		background:#f7a600;
		border:none;
		border-radius:50px
		
	}
	.share-btn .bi:hover{
		color:#fff !important;
		
	}
	
	.hero-section {
      background: #f1f0f0;
      border-radius: 15px;
      padding: 0px;
      display: flex;
      align-items: center;
      justify-content: space-between;
	  margin:0px
    }
    .hero-text h1 {
      font-size: 24px;
      font-weight: 400;
      line-height: 1.2;
    }
    .tagline {
      display: inline-block;
      background: #ffb400;
      color: #000;
      padding: 6px 15px;
      border-radius: 5px;
      font-weight: 500;
      margin-top: 10px;
	  font-size:12px
    }
    .hero-img img {
      max-height: 220px;
      border-radius: 10px;
    }
    .stats-card {
     /* background: linear-gradient(to right, #fff4de, #ffe2a6);*/
	  background-image: url("../images/curvem1.png");
	   background-size: cover; /* or contain / auto depending on need */
    background-repeat: no-repeat;
    background-position: bottom;
      border-radius: 15px;
      text-align: left;
      padding: 25px;
      font-weight: bold;
      font-size: 30px;
    }
	
	.stats-card1 {
     /* background: linear-gradient(to right, #fff4de, #ffe2a6);*/
	  background-image: url("../images/curvem.png");
	   background-size: cover; /* or contain / auto depending on need */
    background-repeat: no-repeat;
    background-position: bottom;
      border-radius: 15px;
      text-align: left;
      padding: 25px;
      font-weight: bold;
      font-size: 30px;
    }
	
    .stats-card p {
      margin: 0;
      font-size: 12px;
      font-weight: normal;
      color: #555;
    }
	.stats-card1 p {
      margin: 0;
      font-size: 12px;
      font-weight: normal;
      color: #555;
    }
    .cta-card {
       background-image: url("../images/curveg.png");
	   background-size: cover; /* or contain / auto depending on need */
    background-repeat: no-repeat;
    background-position: bottom;
      border-radius: 15px;
      text-align: center;
          padding: 20px 12px;
    }
    .cta-card h5 {
      font-size: 12px;
      font-weight: normal;
	  line-height:20px
    }
    .btn-orange {
         background: #f6a600;
    color: #000;
    font-weight: 600;
    border-radius: 16px;
    margin-top: 0px;
    font-size: 10px;
    padding: 3px 20px;
    }
    .btn-orange:hover {
      background: #e05500;
      color: #fff;
    }
		/* Tablate*/
	
	 @media (min-width: 768px) and (max-width: 1025px){
		 
		 .banner-section h3{
			 font-size:70px
		 }
		 .banner-section h4{
			font-size:28px 
		 }
		 .banner-section p{
			 font-size:13px
		 }
		 .line-bg::before {
    content: "";
    position: absolute;
    top: 44px;
    left: -12%;
    width: 2px;
    height: 300px;
    background-color: #000;
    transform: rotate(318deg);
    transform-origin: top;
    z-index: 0;
    opacity: 1;
}
.navbar{
	margin: 20px 68px;
}
.highlight-box{
	padding:18px
}
.why-title{
	font-size:32px
}
.services-section{
	padding:0px;
}
.banner-section .Banner-Head{
	left:0px !important
}
.custom-card{
	padding: 15px;
	    text-align: center;
		    display: block;
	 }
	.icon-circle{
		margin-left: auto;
    margin-right: auto;
    margin-bottom: 15px;
	} 
	.video-container{
		margin-top: -45px;
	}
	 
 }
	
	
	
	
