:root {
  --overlay-color: #19191a;
}




* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
 font-family: 'Open Sans', sans-serif;
 h1, h2, h3 {
  font-family: 'Roboto', sans-serif;
}  
}
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}


  .custom-translate-container {
    position: fixed;
    top: 28px;
    right: -40px!important;
    z-index: 9999;
  }


  /*Google translate parts start */
  #custom-language-select {
    position: fixed;
    top: 30px;
    right: 20px;
    z-index: 9999;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background-color: white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    background-color: #c6cfd6;
    color: #080808;
  }


@media (max-width: 480px) {
  #custom-language-select {
    top: 12px;
    right: 4px;
    font-size: 7px;
    padding: 2px 4px;
    border-radius: 6px;
  }
}

/* Tablet view (perfect responsive range) */
@media (min-width: 481px) and (max-width: 1024px) {
  #custom-language-select {
    top: 28px;
    right: 14px;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 8px;
  }
}


@media (min-width: 2560px) {
  #custom-language-select {
    top: 60px;
    right: 40px;

    font-size: 38px; 
    padding: 15px 30px; 

    border-radius: 18px;
  }
}

/* Google translate part end */




/* Top white navbar start */
.top-navbar {
  position: fixed;   
  top: 0px;
  left: 0;
  width: 100%;
  background: white; 
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  flex-wrap: wrap;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
  border-radius: 5px; 
}

.top-navbar .logo {
  display: flex;
  align-items: center;
  gap: 190px;
}

.top-navbar .logo img {
  height: 55px;
}

.top-navbar .logo span {
  font-size: 22px;
  font-weight: 500;
  color: rgb(0, 0, 0);
}

.contact-numbers {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-end; 
  margin-right: 170px; 
}

.contact-numbers a {
  text-decoration: none;
  color: rgb(5, 5, 5);
  font-size: 18px;
  font-weight: 500;
  margin-top: 5px; 
  
  display: inline-block; 
}
.contact-numbers a:hover {
  color: #000;
}

@media (max-width: 480px) {

  /* Body & html reset */
  body, html {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow-x: hidden !important;
  }

  /* Top Navbar */
  .top-navbar {
    display: flex;
    flex-direction: column;
    align-items: stretch;  
    padding: 10px 10px;
    width: 100%;  
  }

  
  /* Logo Section */
  .top-navbar .logo {
    display: flex;
    gap: 10px !important; 
    width: 100%;
    justify-content: flex-start; 
    align-items: center;
  }

  .top-navbar .logo img {
    height: 36px;
  }

.top-navbar .logo span {
  font-size: 12px;
  white-space: normal;
  display: inline-block;
  font-weight: 500;
  position: relative; 
  top: 20px;     
  margin-left: 2vh; 
}


.contact-numbers {
  display: flex;
  flex-direction: column;
  align-self: center;
  text-align: center;
  margin: 0; 
  transform: translateY(-40px);
}
  .contact-numbers a {
    font-size: 11px;
    margin-left: 65px;
    margin-top: 1.1vh;
   
  }
}

@media (min-width: 481px) and (max-width: 1024px) {
  html, body {
    overflow-x: hidden !important;
  }

  .top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0; /* ensure full fit */
    padding: 18px 12px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100vw; 
    box-sizing: border-box;
  }

  .top-navbar .logo {
    display: flex;
    align-items: center;
    gap: 10vh; /* reduced gap */
    flex: 0 1 auto;
  }

  .top-navbar .logo img {
    height: 42px;
    max-width: 100%;
  }

  .top-navbar .logo span {
    font-size: 17px;
    font-weight: 500;
    white-space: nowrap;
  }

.contact-numbers {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;
  flex: 0 1 auto;
  margin: 0;
  transform: translate(-20vh, -1px); 
}

.contact-numbers a {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  white-space: nowrap; 
}

.contact-numbers a:hover {
  color: #333;
}

}



   /*only Toogle buttons parts starts*/
.menu-toggle {
  position: fixed;
  top: 120px;
  right: 70px;
  color: magenta;
  cursor: pointer;
   font-size: 24px;
  z-index: 10000!important;
}



.menu-toggle:hover {
  color: rgb(245, 85, 85);
}

@media (max-width: 768px) {
  .menu-toggle {
    top: 150px!important;
    right: 30px!important;   
  }
}

@media (max-width: 480px) {
  .menu-toggle {
    top: 80px!important;
    right: 35px !important;
  }
}

@media (min-width: 2560px) {
  .menu-toggle {
    top: 250px;
    right: 120px;
    font-size: 58px;
  }
}
  /* Only Toogle buttons parts End*/






/* Sidebar Navigation */
#side-nav {
  position: fixed;
  top:85px!important; 
  right: 0;
  width: 300px;
  height: calc(100vh - 100px); 
 background-color: rgba(70, 69, 69, 0.6);
 backdrop-filter: blur(10px);
  overflow-y: auto !important;
  z-index: 1099;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
   border-radius: 15px;
    padding: 15px;
}


/* Sidebar Active (Visible) */
#side-nav.active {
  transform: translateX(0);
}

/* Close Button */
#close-btn {
  position: absolute;
  top: 1px;
  right: 20px;
  font-size: 32px;
  color: white;
  cursor: pointer;
  z-index: 1100;
  transition: transform 1s ease, color 1s ease; 
}

#close-btn:hover {
  transform: rotate(360deg);
  color: red; 
}

@media only screen and (max-width: 480px) {
  #close-btn {
    top: 0px;
    right: 12px;
    font-size: 26px;
    color: white;
    cursor: pointer;
    z-index: 1100;
    transition: transform 1s ease, color 1s ease;
  }

  #close-btn:hover {
    transform: rotate(360deg);
    color: red;
  }
}


/* Tablet view (perfect responsive range) */
@media only screen and (min-width: 481px) and (max-width: 1024px) {
  #close-btn {
    top: 6px;
    right: 18px;
    font-size: 32px;
    color: white;
    cursor: pointer;
    z-index: 1100;
    transition: transform 0.8s ease, color 0.8s ease;
  }

  #close-btn:hover {
    transform: rotate(360deg);
    color: #ff4444;
  }
}

/* Close Button End */





/* Sidebar Nav Items */
#side-nav ul {
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

#side-nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 15px !important;
  padding: 10px 10px;
  display: block;
  line-height: 1.9 !important;

  position: relative;
  overflow: hidden;
  border-radius: 15px 0 0 15px;
  transition: color 0.4s ease, box-shadow 0.4s ease;
  z-index: 0;
}


#side-nav ul li a::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 95%;
  background: #00a0e3;
 border-radius: 15px 0 0 15px;
  transition: right 0.8s ease-in-out; 
  z-index: -1; 
}

#side-nav ul li a:hover::before {
  right: 0;
}

#side-nav ul li a:hover {
  color: white;
  box-shadow: 0 4px 10px rgba(240, 62, 7, 0.4);
}

/* Text always stays above background */
#side-nav ul li a span {
  position: relative;
  z-index: 1;
}



/* nav bar active section */
.side-nav ul li a.active {
  background-color: #00a0e3; 
  color: white;
  font-weight: bold;
  
}


@media (max-width: 768px) {
  .menu-toggle {
    top: 20px;
    right: 20px;
    font-size: 24px;
  }

#side-nav {
  position: fixed;  
  top: 130px;
  width: 50%;
  height: calc(100vh - 130px); 
  padding: 15px;
  overflow-y: auto;
  z-index: 999;       
}


  #close-btn {
    top: 10px;
    right: 15px;
    font-size: 28px;
  }

  #side-nav ul {
    margin-top: 40px;
  }

  #side-nav ul li a {
    font-size: 18px;
    padding: 10px 15px;
  }
}

/* Sidebar Navigation */
@media (max-width: 480px) {
 #side-nav {
  position: fixed;
  top: 120px;  
  right: 0;
  width: 60% !important;
 min-height: calc(100vh - 60px);

  background-color: rgba(70, 69, 69, 0.9); 
  backdrop-filter: blur(5px); 
  overflow-y: auto;  
  z-index: 1099;
  transform: translateX(100%); 
  transition: transform 0.3s ease-in-out;
  border-radius: 15px 0 0 15px;
  padding: 10px; 
  padding-bottom: 30px;
}

  /* Sidebar Nav Items */
  #side-nav ul {
    list-style: none;
    padding: 0;
    margin-top: 5px;
  }

  #side-nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px; 
    padding: 12px 20px;
    display: block;
    line-height: 1.5 !important;
    position: relative;
    overflow: hidden;
    border-radius: 10px 0 0 10px;
    transition: color 0.1s ease, box-shadow 0.1s ease;
    z-index: 0; 
  }

  /* Sidebar Links hover animation */
  #side-nav ul li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;  
    width: 100%;
    height:100%;
    background: #00a0e3;
    border-radius: 10px 0 0 10px;
    transition: left 0.1s ease-in-out; 
    z-index: -1;
  }

  #side-nav ul li a:hover::before {
    left: 0; 
  }

  #side-nav ul li a:hover {
    color: white;
    box-shadow: 0 4px 10px rgba(240, 62, 7, 0.4);
  }
}


/* Toggle Menu Button part End */






/* Slider home page  banar start */

.slider {
  position: relative;
  top: 62px;
  width: 100%;
  min-height: 15vh;
  overflow: hidden;

}


/* Slider images wrapper */
.slider-images {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Each slide */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  z-index: 0;
  text-align: center;
}

/* Active slide */
.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}


/* Slide image */
.slide img {
  width: 100%;
  height: auto;               
  object-fit: contain;        
  object-position: center;  
  display: block;
}


/* Overlay */
.slider-images::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); 
  z-index: 5; 
  pointer-events: none;
}


/*  Slider Content */

.slider-content,
.slider-content h1,
.slider-content p,
.slider-content .second-subtext {
  font-family: 'Poppins', sans-serif;
}

/* Slider Home Page */
.slider {
  position: relative;
  width: 100%;
  height: calc(100vh - 62px); 
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
}/* Slider Content */


.slider-content {
  position: absolute;
  top: 70%;         
  left: 50%;        
  text-align: center;
  color: #fff;
  z-index: 20;
  max-width: 90%;
  width: 1200px;
  padding: 20px;
  box-sizing: border-box;
  transform: translate(-50%, 50px); 
  opacity: 0;                
  animation: slideUp 1s ease forwards; 
}

/* Slide up animation */
@keyframes slideUp {
  0% {
    transform: translate(-50%, 50px); 
    opacity: 0;
  }
  100% {
    transform: translate(-50%, 0);   
    opacity: 1;
  }
}


/* Headings */
.slider-content h1 {
  font-size: 80px; 
  margin: 0;
  width: 100%;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap; 
}

.slider-content .subheading {
  font-size: 60px; 
  margin: 0 0 10px 0;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap; 
}

.slider-content .second-subtext {
  font-size: 17px;
  color: #ffffffcc;
  line-height: 1.8;
  font-weight: 500;
  max-width: 100%;    
  margin-top: 10px;
  white-space: nowrap;  
  overflow: hidden;   
  text-overflow: ellipsis;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



@media (min-width: 768px) and (max-width: 1024px) {
  .slider {
    height: 75vh;        
    min-height: unset;
    top: 82px;           
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .slider-content {
    position: absolute;
    left: 50%;                  
    top: 70%;                  
    transform: translate(-50%, 50px); 
    max-width: 100%;       
    width: 100%;   
    text-align: center;
    font-size: 18px;
    opacity: 0;     
      /* reduced height for tablet            
    background: rgba(34, 34, 34, 0.8);
     */
    z-index: 10;
    animation: slideUpTablet 1s ease forwards; 
  }

  .slider-content h1 {
    font-size: 55px;      
    line-height: 1.1;
    white-space: normal;    
    margin-bottom: 10px;
    word-break: break-word; 
  }

  .slider-content .subheading {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.5px;
    white-space: normal;
    margin-bottom: 10px;
    word-break: break-word;
  }

  .slider-content .second-subtext {
    font-size: 16px;         
    line-height: 1.5;
    max-width: 100%; 
    width: 80%;              
    white-space: normal;      
    overflow: visible;        
    text-overflow: clip;      
    margin: 10px auto 0 auto;  
    word-break: break-word;   
    text-align: center;      
  }

  /* Slider images responsive */
  .slide img {
    width: 100%;
    height: 75vh;           
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* Slide-up animation for tablet */
  @keyframes slideUpTablet {
    0% {
      transform: translate(-50%, 50px); 
      opacity: 0;
    }
    100% {
      transform: translate(-50%, 0);  
      opacity: 1;
    }
  }
}




/*  Mobile / portrait phones (<480px) */
@media (max-width: 479px) {
  .slider {
    height: 32vh;        
    min-height: unset;
    top: 11.1vh;              
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 0px;        
  }

  .slider-content {
    position: absolute;
    left: 50%;                  
    top: 60%;                 
    transform: translate(-50%, 50px); 
    max-width: 100%;       
    width: 100%;   
    text-align: center;
    font-size: 18px;
    opacity: 0;                 
    background: rgba(34, 34, 34, 0.4);
    z-index: 10;
    animation: slideUpMobile 1s ease forwards; 
  }



  .slider-content h1 {
    font-size: 30px;      
    line-height: 1;
    white-space: normal;    
    margin-bottom: 8px;
    word-break: break-word; 
  }


  .slider-content .subheading {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.5px;
    white-space: normal;
    margin-bottom: 10px;
    word-break: break-word;
  }


  .slider-content .second-subtext {
    font-size: 13px;         
    line-height: 1.5;
    max-width: 100%; 
    width: 78%;              
    white-space: normal;      
    overflow: visible;        
    text-overflow: clip;      
    margin: 10px auto 0 auto;  
    word-break: break-word;   
    text-align: center;      
  }

  /* Slider images responsive */
  .slide img {
    width: 100%;
    height: 32vh;           
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* Slide-up animation for mobile */
  @keyframes slideUpMobile {
    0% {
      transform: translate(-50%, 50px); 
      opacity: 0;
    }
    100% {
      transform: translate(-50%, 0); 
      opacity: 1;
    }
  }
}

/*slider part end home  */




/* Home page intro part start */


.intro-section {
  background: #f9f9f9;
  padding: 110px 1px;
  text-align: center;
}

.intro-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.intro-section h1 {
  font-size: 2.8rem;
  color: #00a0e3;
  max-width: 60%;       
  text-align: center;   
  margin: 0 auto 18px; 
  font-weight: 600;
  line-height: 1.3;
}


.intro-section h1 span {
  display: block;
  color: #00a0e3;
  font-weight: 540;
}

.intro-text {
  color: gray;
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 15px;
  font-weight: 600;
   text-transform: capitalize;

  width: 100%;         
  max-width: 1200px;   
  margin-left: auto;
  margin-right: auto;
  text-align: center;   
}


.intro-text1 {
  color: gray;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-weight: 600;
   text-transform: capitalize;

  width: 77%;         
  max-width: 1300px;   
  margin-left: auto;
  margin-right: auto;
  text-align: center;   
}


@media (max-width: 480px) {
  .intro-section {
    padding: 100px 0px;
  }

.intro-section h1 {
  font-size: 22px;
  line-height: 1.2;
  margin: 0 auto 4px; 
  width: 100%;      
  max-width: 100%;     
  text-align: center;   
  box-sizing: border-box; 
  padding: 0 1px;    
}

  .intro-section h1 span {
    font-weight: 500;
  }

  .intro-text {
    font-size: 18px;
    line-height: 1;
    max-width: 100%;
    margin-bottom: 15px;
    font-weight: 600;
    color: gray;
  
  }


 .intro-text1 {
  font-size: 14px;
  line-height: 1.7;
  max-width: 79%;      
  font-weight: 600;
  margin-left: 45px;
  text-transform: capitalize;
  text-align: center; 
  margin-bottom: -55px;
  color: gray;  
}

}

/*Home page intro part End */



/*About  What we do parts start */
.about-us-section {
  background-color: #f7f9fc;
  padding: 20px 5px; 
  margin-top: -50px; 
}

.container-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px; 
}

.text-column {
  flex: 1 1 450px;
  color: #555555;
}

.section-title1 {
  font-size: 38px ;
  color: #00a0e3;
  margin-bottom: -10px;
  font-weight: 700;
   margin-left: 20px;
}

.section-description {
  font-size: 17px;
  line-height: 1.5;
  color: #555;
  letter-spacing: 0.02em;
  white-space: pre-line;
   margin-left: 20px;
}

.image-column {
  flex: 1 1 450px;
  text-align: center;
}

.responsive-image {
  width: 100%;
  max-width: 700px;
  max-height: 73vh;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 160, 227, 0.25);
  transition: transform 0.3s ease;
  object-fit: cover;
  display: block;
   margin-left: 60px;
    margin-bottom: 25px; 
}


.responsive-image:hover {
  transform: scale(1.05);
}

.about-us-section .text-column,
.about-us-section .image-column {
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
  position: relative;
}
.about-us-section .text-column,
.about-us-section .image-column {
  opacity: 0;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  position: relative;
}

.about-us-section .text-column {
  transform: translateX(-400px);
}

.about-us-section .image-column {
  transform: translateX(400px);
}

.about-us-section.visible .text-column,
.about-us-section.visible .image-column {
  opacity: 1;
  transform: translateX(0);
}

/* Button styling */
.image-button-wrapper {
  margin-top: 1px; 
  text-align: center;
  width: 100%;
  margin-bottom: 15px;
}

.about-btn {
  display: inline-block;
  background-color: #00a0e3;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background-color: cyan;
  box-shadow: 0 0 15px 3px rgba(0, 200, 255, 0.6);
  transform: translateY(-2px);
  color: #000;
  transition: all 0.3s ease;
}


/* Responsive adjustment */
@media (min-width: 481px) and (max-width: 1024px) {

  .about-us-section {
    padding: 1px 20px;   
    margin-top: -80px;    
  }
}






@media (max-width: 480px) {
  .about-us-section {
    padding: 25px 1px;
  }

  .container-wrapper {
    max-width: 100%;
    padding: 0 10px;
  }

  .content-wrapper {
    flex-direction: column;
    gap: 15px;
  }

  .text-column, .image-column {
    flex: 1 1 100%;
    margin-left: 0 !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
  }

  .section-title1 {
    font-size: 28px;
    margin-left: 0;
    margin-bottom: 0;
  }

  .section-description {
    font-size: 14px;
    margin-left: 0;
    margin-top: -1vh;
  }

  .responsive-image {
    max-width: 100%;
    max-height: auto;
    margin-left: 0;
    border-radius: 10px;
  }
}

/*About parts End */




/* our services new part start */


#imageSliderWrapper {
  width: 1120px;
  margin: 40px auto;
  text-align: center;
}

#sliderHeading {
  font-size: 38px;
  font-weight: 650;
  color: #00a0e3;
  margin-bottom: 30px;
}

#imageSlider {
  width: 1120px;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  padding-bottom: 190px;
}

#sliderInner {
  display: flex;
  transition: transform 0.5s ease;
  position: relative;
}

.imageContainer {
  position: relative;
  min-width: 550px;
  margin-right: 25px;
  flex-shrink: 0;
}

.imageContainer:last-child {
  margin-right: 0;
}

/* Big image box */
.imageBox {
  height: 360px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.imageBox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 15px;
}

/* Heading Style  */
.sliderMainHeading {
  font-size: 38px;
  font-weight: 650;
  color: #00a0e3;
  margin-bottom: 30px;
  text-transform: capitalize;
  letter-spacing: 1px;
}

.smallBox {
  position: absolute;
  top: 220px;
  left: 50%;
  transform: translateX(-50%);
  width: 78%;
  height: 300px;  
  padding: 20px;
  box-sizing: border-box;

  background-color: rgb(250, 250, 250);
  border-radius: 10px;
  overflow: hidden;
  background-clip: padding-box;
  z-index: 2;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

  font-weight: 600;
  font-size: 18px;
  color: black;
  user-select: none;
  transition: color 0.3s ease;

}

.smallBox::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 0;
  background-color: rgb(18, 18, 65);
  border-radius: 10px;
  z-index: 1;
  pointer-events: none;
  transition: height 0.3s ease;
}

.imageContainer:hover .smallBox::before {
  height: 100%;
}

.imageContainer:hover .smallBox {
  color: white;
  z-index: 2;
}

.smallBox > * {
  position: relative;
  z-index: 2;
}


.roundBtn {
  margin-top: 30px;
  padding: 10px 25px!important;
  border: none;
  border-radius: 20px;
  background-color: #00a0e3;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 transparent;
  text-decoration: none;
  display: inline-block; 
}

.roundBtn:hover {
  background-color: cyan;
  color: black;
  box-shadow: 0 0 15px 4px cyan; 
}


/* Bullets container */
#bullets {
  text-align: center;
  margin-top: 30px;
}

/* Each bullet */
.bullet {
  display: inline-block;
  width: 19px;
  height: 19px;
  margin: 0 10px;
  background-color: black;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.bullet.active {
  background-color: cyan;
}

.bullet:hover {
  box-shadow: 0 0 5px 2px rgb(0, 0, 0);
}

/*hover style in big box start */
.imageBox::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background-color: rgba(0, 255, 255, 0.3);
  pointer-events: none;
  border-radius: 15px;
  z-index: 5;
  transition: height 0.4s ease;
}

.imageContainer:hover .imageBox::after {
  height: 100%;
}
/*hover style in big box End */


.imageContainer:hover .smallBox::before {
  height: 100%;
}

.imageContainer:hover .smallBox {
  color: rgb(231, 231, 231);
  z-index: 10; 
}


.imageBox {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.imageBox::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background-color: rgba(0, 255, 255, 0.3);
  pointer-events: none;
  border-radius: 15px;
  z-index: 5;
  transition: height 0.3s ease;
}

.imageContainer:hover .imageBox::after {
  height: 100%;
}



@media screen and (max-width: 480px) {
  .smallBoxHeading {
    position: relative;
    margin-top: 1vh;
    font-size: 16px;        
    font-weight: bold;
    display: inline-block;
    text-align: center;
    line-height: 1.3;      
  }



 /* Animated underline for .smallBoxHeading */
.smallBoxHeading {
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
}

.smallBoxHeading .underline {
  display: block;
  position: relative;
  width: 180px;          
  height: 6px;           
  background: #00a0e3;
  border-radius: 2px;
    margin: 9px auto -22px;       
  overflow: hidden;
}

.smallBoxHeading .underline::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 100%;
  background: #fff;
  animation: underline-move 4s infinite linear;
}
@keyframes underline-move {
  0% { left: 0; }
    50% { left: 174px; } 
  100% { left: 0; }
}


  #imageSliderWrapper {
    width: 100%;
    margin: 40px auto;
    padding: 0 2px;
  }

  #sliderHeading {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    text-align: center;
  }

  #imageSlider {
    width: 100%;
    margin-top: -10vh;
    padding-bottom: 120px;
  }

  #sliderInner {
    flex-direction: column;
    align-items: center;
    gap: 20vh;
  }

  .imageContainer {
    min-width: 100%;
    margin-right: 0;
    opacity: 0;                
    transform: translateY(50px); 
    transition: all 0.7s ease-out; 
  }

  .imageContainer.animate {
    opacity: 1;                 
    transform: translateY(0);    
  }

  .imageBox {
    height: 240px;
    border-radius: 1px;
  }

  .smallBox {
    top: 160px;
    width: 90%;
    height: 25vh;
    padding: 20px;
    margin-bottom: 20vh;
    font-size: 15px;
  }

  .sliderMainHeading {
    font-size: 29px !important;
    font-weight: 700;
    margin-bottom: 70px;
  }

  .roundBtn {
    margin-top: 15px;
    padding: 8px 20px !important;
    font-size: 14px;
    border-radius: 15px;
  }

  #bullets {
    margin-top: 15px;
  }

  .bullet {
    width: 12px;
    height: 12px;
    margin: 0 5px;
  }
}


@media (min-width: 768px) and (max-width: 1024px) {

  #imageSliderWrapper {
    width: 100%;
    margin: 30px auto;
    text-align: center;
  }

  #sliderHeading,
  .sliderMainHeading {
    font-size: 35px;
    font-weight: 700 !important;
    margin-bottom: 30px;
  }

  #imageSlider {
    width: 100%;
    overflow: hidden;       
    position: relative;
    border-radius: 12px;
    padding-bottom: 140px;
  }

  #sliderInner {
    display: flex;
    transition: transform 0.5s ease; 
    position: relative;
    gap: 15px;
  }

  .imageContainer {
    flex: 0 0 38%;        
    margin: 0;             
    position: relative;
  }

  .imageBox {
    height: 290px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
  }

  .imageBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 15px;
  }

  .smallBox {
    top: 180px;
    width: 80%;
    height: 220px;
    font-size: 16px;
    padding: 15px;
  }

  .smallBox > * {
    position: relative;
    z-index: 2;
  }

  .roundBtn {
    margin-top: 20px;
    padding: 8px 20px!important;
    font-size: 14px;
  }

  /* Bullets */
  #bullets {
    margin-top: 20px;
  }

  .bullet {
    width: 16px;
    height: 16px;
    margin: 0 8px;
  }

  /* Hover overlay adjustments */
  .imageBox::after {
    border-radius: 15px;
  }
}


/* our services new partEnd */








/* image and paragraph section start */
:root {
  --accent: #00a0e3;
  --bg: #f8f8f8;
  --text: #444;
  --container-max: 2200px;
  --radius: 12px;
}

.image-content-section { box-sizing: border-box; }
.image-content-section img { display: block; max-width: 100%; height: auto; }

.image-content-section {
  padding: clamp(2rem, 3vw, 4rem) 0;
  background: #fff;
}

.image-content-section .container {
  margin: 0 auto;
  max-width: var(--container-max);
  padding: 0;
}

.image-content-box {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  gap: 0; 
}

/* ---------- IMAGE SIDE ---------- */
.image-content-box .image-side {
  flex: 0 0 70%;
  background: #000;
}

.image-content-box .image-side img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: var(--radius) 0 0 var(--radius);
  display: block;
}

/* ---------- CONTENT SIDE ---------- */
.image-content-box .content-side {
  flex: 0 0 30%; 
  padding: clamp(1rem, 1.8vw, 2rem);
  background: var(--bg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 var(--radius) var(--radius) 0;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.image-content-box .content-side h2 {
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
  color: var(--text);
}


@media (max-width: 480px) {
  .image-content-box {
    flex-direction: column; 
    gap: 0;
  }


  .image-content-box .image-side {
    flex: 0 0 auto;
    width: 100%;
    background: #000; 
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .image-content-box .image-side img {
    width: 100%;
    height: auto;
    max-height: 300px; 
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius) var(--radius) 0 0;
    display: block;
  }

  /* CONTENT */
  .image-content-box .content-side {
    flex: 0 0 auto;
    width: 100%;
    padding: clamp(1rem, 2vw, 1.5rem);
    border-radius: 0 0 var(--radius) var(--radius);
    text-align: left;
    background: #fff;
    box-shadow: none; 
  }

  .image-content-box .content-side h2 {
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    line-height: 1.5;
    margin: 0 0 0.5rem 0;
    font-weight: 500;
    color: var(--text);
  }

  .image-content-box .content-side p {
    font-size: clamp(0.9rem, 1vw, 1rem);
    line-height: 1.5;
    margin: 0;
  }

}


@media (min-width: 481px) and (max-width: 1024px) {
  .image-content-box {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
    height: auto; 
  }

  .image-content-box .image-side {
    flex: 0 0 65%;
    display: flex;
  }

  .image-content-box .image-side img {
    width: 100%;
    height: auto;
    max-height: 260px; 
    object-fit: cover;
    border-radius: var(--radius) 0 0 var(--radius);
    display: block;
  }


  .image-content-box .content-side {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    padding: clamp(0.8rem, 1.5vw, 1.5rem);
    color: var(--text);
    text-align: left;
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: none;
    max-height: 260px; 
    overflow: hidden; 
  }

 
  .image-content-box .content-side h2 {
    font-size:1rem;
    line-height: 1.5;
    font-weight: 500;
    color: #333;
    margin: 0 0 0.4rem 0;
  }

  .image-content-box .content-side p {
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    line-height: 1.5;
    margin: 0;
  }

}


@media (min-width: 1200px) {
  .image-content-box .image-side {
    flex: 0 0 70%;
  }
  .image-content-box .content-side {
    flex: 0 0 30%;
    padding: clamp(1.5rem, 2vw, 2.5rem);
  }
  .image-content-box .image-side img {
    object-fit: contain;
    height: auto;
    max-height: 800px;
  }
}
/* Ultra-wide / 4K screens */
@media (min-width: 1920px) {
  .image-content-box .image-side {
    flex: 0 0 70%;
  }
  .image-content-box .content-side {
    flex: 0 0 30%;
    padding: 2.5rem 3rem;
  }
  .image-content-box .image-side img {
    max-height: 900px;
  }

  .image-content-box .content-side h2 {
    font-size: 1.7rem; 
    line-height: 1.6;
  }

  .image-content-box .content-side p {
    font-size: 1rem;
    line-height: 1.8;
  }

}


/* image and paragraph section End */



 /* fact count section start */ 

 .stats-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
  font-family: 'Poppins', sans-serif;
}

.stats-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.stat-item {
  position: relative;
  width: 30%;
  min-width: 280px;
  height: 250px;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay text on image */
.stat-item h4.stat-over,
.stat-item h2.stat-counter,
.stat-item p.stat-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: black;
  z-index: 2;
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 18px;
}

/* Positioning individual text elements */
.stat-item h4.stat-over {
  top: 65px;
  font-size: 25px;
  font-weight: 700;
  color: blackc;
}

.stat-item h2.stat-counter {
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 36px;
  font-weight: 800;
}

.stat-item p.stat-label {
  bottom: 70px;
  font-size: 18px;
  font-weight: 700;
}




@media (min-width: 768px) and (max-width: 1024px) {

  .stats-section {
    padding: 1rem 5px; 
  }

  .stats-grid {
    display: flex;
    flex-wrap: nowrap; 
    gap: 8px;         
    justify-content: center;
    align-items: stretch;
  }

  .stat-item {
  flex: 0 0 calc(30.8% - 6px); 
  max-width: calc(30.8% - 6px);
  height: 30vh;          
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}

  .stat-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
    display: block;
  }

  /* Overlay text adjustments */
  .stat-item h4.stat-over {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    z-index: 2;
  }

  .stat-item h2.stat-counter {
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 24px;
    z-index: 2;
  }

  .stat-item p.stat-label {
    position: absolute;
    bottom: 55px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15px;
    z-index: 2;
  }
}



@media (max-width: 480px) {
  .stats-section {
    padding: 30px 15px;
  }

  .stat-item {
    width: 100%;
    height: auto;      
    min-height: 200px;  
    margin-bottom: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    align-items: center;     
    text-align: center;
    padding: 20px 0;
  }

 
  /* Over text on top of image */
  .stat-item h4.stat-over {
    position: absolute;
    top: 28%;     
    left: 50%;
    transform: translateX(-50%);
    font-size: 25px;
    font-weight: 700;
    margin: 0;
    z-index: 2;
  }

  /* Counter number below 'Over' */
  .stat-item h2.stat-counter {
    position: absolute;
    top: 50%;    
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    z-index: 2;
  }

  /* Label / heading below counter */
.stat-item p.stat-label {
  position: absolute;
  bottom: 30%;        
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  z-index: 2;

  width: 90%;          
  max-width: 300px;  
  text-align: center; 
  white-space: normal; 
  line-height: 1.2em; 
}

}


/*fact count parts End*/





 /*static image part start*/
 
.static-image-section {
  position: relative;
  height: 80vh;
    background: url('../img/main-img/newoutstudio.png') center center/cover no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden;
}



.dark-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.0);
  z-index: 1;
  pointer-events: none;
}


.section-content {
  position: relative;
  z-index: 2;
  padding: 20px 40px;
  border-radius: 12px;
}



.color-heading {
  font-size: 50px;
  margin-bottom: 0.5rem;
  font-weight: 700;
  max-width: 800px !important;
  text-shadow: 2px 2px 4px #000; 
}

@media (max-width: 480px) {
  .static-image-section {
    height: 40vh; 
    background-attachment: scroll;      
    background-position: center center;  
    background-size: cover; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    position: relative;
  }

  .dark-overlay {
    background-color: rgba(0, 0, 0, 0.0); 
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .section-content {
  width: 100%;                  
  border-radius: 0;                   
  background: rgba(0, 0, 0, 0.2); 
  z-index: 2;
  text-align: center;
  position: absolute;
  bottom: 0;                       
  left: 0;
  right: 0;
  padding: 0;                        
}


  .color-heading {
    font-size: 20px;      
    max-width: 100% !important;          
    margin-bottom: 12px;
    text-transform: uppercase;

  }

  .section-content p,
  .section-content .subheading {
    font-size: 16px;
    line-height: 1.4;
    color: #fff;
  }
}

 /*static image part End*/




  /* arrow Part start*/
.floating-arrow {
  position: fixed;
  bottom: 20px;
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: #00a0e3; 
  color: white;            
  font-size: 2rem;
  font-weight: bold;
  border-radius: 50%;        
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  animation: floatUpDown 2s ease-in-out infinite;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  user-select: none;
  transition: background-color 0.3s ease;
}

.floating-arrow:hover {
  background-color: #0703f3; 
}

@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* WhatsApp Icon */
.whatsapp-icon {
  position: fixed;
  bottom: 100px; 
  right: 30px;
  width: 45px;
  height: 45px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  z-index: 1001;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.whatsapp-icon:hover {
  background-color: #128C7E;
}


@media (max-width: 480px) {
  .floating-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
    bottom: 15px;
    right: 20px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  }

  .floating-arrow:hover {
    background-color: #0703f3;
  }

  .whatsapp-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    bottom: 80px;
    right: 20px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  }

  .whatsapp-icon:hover {
    background-color: #128C7E;
  }
}

  /* arrow Part End*/




/* Portfolio main part Section start */
.container {
  width: 90%;        
  max-width: 1600px; 
  margin: 0 auto;    
  box-sizing: border-box;
  padding: 0 1px;  
}

/* Portfolio heading */
.portfolio-container h2 {
  color: #00a0e3;
  font-size: 38px;
  margin-bottom: 0px;
  text-align: center;
  font-weight: 700;
}

/* Subtitle paragraph */
.text-center p.section-subtitleport {
  font-size: 24px;
  color: #555;
  font-weight: 500;
  margin-top: 0;
  text-align: center;
  width: 53%;       /* width ko kam kiya */
  margin-left: auto; 
  margin-right: auto;
}


/* Portfolio Row */
.portfolio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-start; 
}

/* Boxes: 3 per row */
.animated-box {
  flex: 1 1 calc((100% / 3) - 13.33px); 
  max-width: 33.33%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  box-sizing: border-box;
}
.animated-box {
  position: relative;
}

.animated-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.8);
  opacity: 0;      
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 5;
  background-color: rgba(0, 0, 0, 0.3);
}

.animated-box:hover .overlay {
  opacity: 1; 
}

.animated-box:hover .box-desc {
  opacity: 1;
}


/* Images inside boxes if any */
.animated-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

/* Box description */
.box-desc {
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  text-shadow: 0 0 5px rgba(0,0,0,0.7);
  pointer-events: none;
  user-select: none;
  padding: 0 10px;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 10;
}

.animated-box:hover .box-desc {
  opacity: 1;
}

/* Read More Button */
.read-more-wrapper {
  width: 100%;
  text-align: center;
  margin-top: 15px;
}

.read-more-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #00a0e3;
  color: white;
  font-size: 0.9rem;
  font-weight: 400;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.read-more-btn:hover {
  background-color: #00ffff;
  color: #000;
  box-shadow: 0 0 15px 5px #afe8f1;
  transition: all 0.3s ease-in-out;
}


@media (max-width: 480px) {
  .portfolio-container h2 {
    font-size: 28px;
    margin-bottom: -3px !important;
  }

  /* Subtitle paragraph */
  .text-center p.section-subtitleport {
    font-size: 14px !important;
    width: 98%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
  }

  /* Portfolio boxes: 1 per row */
  .animated-box {
    flex: 1 1 100%;
    max-width: 100%;
  }


    .section-subtitleport::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8vh !important;          
  height: 100%;
  width: 0;
  background-color:rgb(179, 231, 179);
  z-index: -1;
  transition: width 1s ease;
  border-radius: 25px;
}

.section-subtitleport:hover::before {
  width: 115.1vw !important; 
}
}




/* Subtitle Background Effect */
.section-subtitleport {
  position: relative;
  display: inline-block;
  padding: 10px 20px;
  z-index: 1;
  overflow: visible; 
}

.section-subtitleport::before {
  content: '';
  position: absolute;
  top: 0;
  left: -44vw;          
  height: 100%;
  width: 0;
  background-color:rgb(179, 231, 179);
  z-index: -1;
  transition: width 1s ease;
  border-radius: 25px;
}

.section-subtitleport:hover::before {
  width: 123.1vw; 
}


/*  Responsive for screens up to 1440px */
@media (max-width: 1440px) {
  .section-subtitleport {
    padding: 8px 16px; 
  }

  .section-subtitleport::before {
    left: -25vw;      
    border-radius: 20px;
  }

  .section-subtitleport:hover::before {
    width: 110vw;     
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .portfolio-container h2 {
    font-size: 28px;
  }

  .text-center p.section-subtitleport {
    font-size: 16px !important;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
  }

  .animated-box {
    flex: 1 1 calc(50% - 15px);
    max-width: 50%;
  }

  
    .section-subtitleport::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8vh !important;          
  height: 100%;
  width: 0;
  background-color:rgb(179, 231, 179);
  z-index: -1;
  transition: width 1s ease;
  border-radius: 25px;
}

.section-subtitleport:hover::before {
  width: 115.1vw !important; 
}
}


@media (min-width: 769px) and (max-width: 1024px) {
  
    .portfolio-container h2 {
    font-size: 2.5rem;  
    margin-bottom: -5px;
  }

  .text-center p.section-subtitleport {
    font-size: 18px !important;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
  }

  .animated-box {
    flex: 1 1 calc(33.33% - 15px);
    max-width: 33.33%;
  }


    .section-subtitleport::before {
  content: '';
  position: absolute;
  top: 0;
  left: -21vh ;          
  height: 100%;
  width: 0;
  background-color:rgb(179, 231, 179);
  z-index: -1;
  transition: width 1s ease;
  border-radius: 25px;
}

.section-subtitleport:hover::before {
  width: 115.1vw !important; 
}

}

/* Portfolio main part Section End */





/* photo shoot section start */

.photo-shoot-section {
  background-color: white;
  padding: 2px 10px 0; 
  text-align: center;
  width: 100%;
  margin: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

.container-fluid.custom-container {
  padding-left: 0;
  padding-right: 0;
}

.row.custom-gutter {
  margin-left: -6px;
  margin-right: -6px;
}

.row.custom-gutter > .col-md-4 {
  padding-left: 6px;
  padding-right: 6px;
  margin-bottom: 12px;
}


.image-card {
  position: relative;
  height: 450px;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  transition: transform 0.3s ease;
  box-sizing: border-box;
  margin: 0;
}

/* Section Title Spacing */
.section-title {
  margin-top: 1px;
  color: #00a0e3;
  font-weight: 700;
  margin-bottom: 2.5rem ;
}
.section-subtitle{
  color: rgb(83, 81, 81) !important;
  width: 60%;
}

.image-inner {
  position: relative;
  height: 100%;
  width: 100%;
}

.image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  transition: transform 0.4s ease;
}

.image-inner:hover img {
  transform: scale(1.02);
}


.shutter {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  transition: transform 0.5s ease;
  pointer-events: none;
  border-radius: 6px;
}

.shutter-left {
  left: 0;
  transform: translateX(-100%);
  border-radius: 6px 0 0 6px;
}

.shutter-right {
  right: 0;
  transform: translateX(100%);
  border-radius: 0 6px 6px 0;
}

.image-inner:hover .shutter-left,
.image-inner:hover .shutter-right {
  transform: translateX(0);
}


.overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  text-align: center;
  padding: 0 1rem;
}

.image-inner:hover .overlay-content {
  opacity: 1;
  pointer-events: auto;
}

.small-text {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  color: #fff;
}

/* CTA Button */
.btn-light {
  font-weight: 400;
  border-radius: 20px;
  padding: 8px 33px;
  background-color: #d8d8d8;
  color: #000;
  border: none;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-light:hover {
  background-color: #00e5ff;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 0 15px 5px rgba(0, 229, 255, 0.6);
}

@media (max-width: 768px) {
  .image-card {
    height: 300px;
  }

  .section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem !important;
  }

  .small-text {
    font-size: 13px;
  }

  .btn-light {
    padding: 6px 25px;
    font-size: 14px;
  }
}


/* bg color perfect set full screen start */
.section-subtitle {
  position: relative;
  display: inline-block;
  padding: 10px 1px;
  z-index: 1;
  overflow: visible;

  font-size: 24px;
  font-weight: 500;
  color: #333;
  line-height: 1.5;

  margin-top: -40px;  /*  Pulls it upwards */
}


.section-subtitle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -35vw !important;          
  height: 100%;
  width: 0;
  background-color:#f1f192;
  z-index: -1;
  transition: width 1s ease;
  border-radius: 25px;
}

.section-subtitle:hover::before {
  width: 120.1vw !important; 
}

@media (max-width: 1440px) {
  .section-subtitle {
    padding: 1px 0;    
    margin-top: -40px; 
  }
  
.image-card {
  position: relative;
  height: 350px;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  transition: transform 0.3s ease;
  box-sizing: border-box;
  margin: 0;
}

  .section-subtitle::before {
    left: -27vw;          
    border-radius: 20px;
  }

  .section-subtitle:hover::before {
    width: 100vw;          
  }
}

@media (max-width: 991px) {
  .section-subtitle {
    font-size: 20px;
    margin-top: -45px;
    padding: 8px 12px;
    width: 100%;
  }
   .section-title{
    font-size: 39px;
  }


  .section-subtitle::before {
    left: -10vw;
    border-radius: 20px;
  }

  .section-subtitle:hover::before {
    width: 145vw !important;
  }

  .image-card {
    height: 240px;
  }

  .small-text {
    font-size: 13px;
  }

  .btn-light {
    padding: 7px 25px !important;
    font-size: 14px;
  }
}

/* Small Mobile (<480px) */
@media (max-width: 480px) {
  .section-subtitle {
    font-size: 14px;
    margin-top: -20px;
    padding: 1px 1px;
    width: 100%;
  }
  .section-title{
    font-size: 28px;
  }

  .section-subtitle::before {
    left: 0;
    width: 0;
    border-radius: 12px;
  }

  .section-subtitle:hover::before,
  .section-subtitle:active::before {
    width: 100%;
  }

  .image-card {
    height: 260px;
  }

  .image-inner img {
    object-fit: cover;
  }

  .small-text {
    font-size: 12px;
  }

  .btn-light {
    padding: 6px 20px;
    font-size: 12px;
  }

  .photo-shoot-section {
    padding: 2rem 10px 1rem 10px;
  }

  .section-subtitle::before {
    left: -10vw;
    border-radius: 20px;
  }

  .section-subtitle:hover::before {
    width: 135vw !important;
  }
}

 /* Photo shoot part End */




 /* Web Design Section start */

.web-design-section {
  background-color: white;
  padding: 2rem 0;
  text-align: center;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
  overflow-x: hidden;
}

.web-section-title {
  margin-top: -20px;
  margin-bottom: 3rem !important;
  font-size: 38px;
  font-weight: 650;
  color:#00a0e3;;
}

.web-section-subtitle {
  position: relative;
  display: inline-block;

  z-index: 1;
  overflow: visible;
width: 70%;
  font-size: 24px !important;
  font-weight: 500;
  color: #555;
  line-height: 1.5;

  margin-top: -40px !important;
}

.web-section-subtitle::before {
  content: '';
  position: absolute;
  top: 0;
  left: -37vw !important;
  height: 100%;
  width: 0;
  background-color: #c7c5c5;;
  z-index: -1;
  transition: width 1s ease;
  border-radius: 25px;
}

.web-section-subtitle:hover::before {
  width: 129.1vw !important;
}

/* Grid gutter */
.row.web-custom-gutter {
  margin-left: -6px;
  margin-right: -6px;
}

.row.web-custom-gutter > .col-md-4 {
  padding-left: 6px;
  padding-right: 6px;
  margin-bottom: 12px;
}

/* Image card */
.web-image-card {
  position: relative;
  height: 430px;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  transition: transform 0.3s ease;
  margin: 0;
  box-sizing: border-box;
}

/* Inner image */
.web-image-inner {
  position: relative;
  height: 100%;
  width: 100%;
}

.web-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 6px;
  transition: transform 0.4s ease;
}

.web-image-inner:hover img {
  transform: scale(1.02);
}

/* Shutter overlay */
.web-shutter {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  transition: transform 0.5s ease;
  pointer-events: none;
  border-radius: 6px;
}

.web-shutter-left {
  left: 0;
  transform: translateX(-100%);
  border-radius: 6px 0 0 6px;
}

.web-shutter-right {
  right: 0;
  transform: translateX(100%);
  border-radius: 0 6px 6px 0;
}

.web-image-inner:hover .web-shutter-left {
  transform: translateX(0);
}

.web-image-inner:hover .web-shutter-right {
  transform: translateX(0);
}

/* Overlay content */
.web-overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  text-align: center;
  padding: 0 1rem;
}

.web-image-inner:hover .web-overlay-content {
  opacity: 1;
  pointer-events: auto;
}

/* Overlay text */
.web-small-text {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 1px;
  color: #fff;
}


@media (max-width: 1440px) {
  .web-section-subtitle {
    padding: 8px 0;
    font-size: 20px;       
    margin-top: -30px;     
  }
  .web-image-card {
  position: relative;
  height: 350px;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  transition: transform 0.3s ease;
  margin: 0;
  box-sizing: border-box;
}


  .web-section-subtitle::before {
    left: -34vw;           
    border-radius: 20px;
  }

  .web-section-subtitle:hover::before {
    width: 100vw;  
  }
}

@media (max-width: 480px) {
  .web-design-section {
    padding: 1rem 0;
    padding-left: 8px;
    padding-right: 8px;
  }

  .web-section-title {
    font-size: 26px;
    margin-top: -10px;
    margin-bottom: 2rem !important;
  }

  .web-section-subtitle {
    font-size: 16px !important;
    width: 95%;
    margin-top: -20px !important;
    padding: 6px 0;
  }

  .web-section-subtitle::before {
    left: -20vw;
    border-radius: 15px;
  }

  .web-section-subtitle:hover::before {
    width: 125vw !important;
  }

  .row.web-custom-gutter {
    margin-left: -4px;
    margin-right: -4px;
  }

  .row.web-custom-gutter > .col-md-4 {
    padding-left: 4px;
    padding-right: 4px;
    margin-bottom: 10px;
  }

  .web-image-card {
    height: 260px;
    border-radius: 6px;
   
  }

  .web-image-inner img {
    object-fit: cover;
    
  }

  .web-small-text {
    font-size: 12px;
  }
}

/* Web designing part End */


@media (min-width: 768px) and (max-width: 1024px) {

  .web-design-section {
    padding: 2rem 5px; 
  }

  .row.web-custom-gutter {
    margin-left: 0;
    margin-right: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .row.web-custom-gutter > .col-md-4 {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 15px;
    flex: 0 0 calc(33.33% - 10px);
    max-width: calc(33.33% - 10px);
  }

  .web-image-card {
    height: 33vh;      
    position: relative;
    overflow: hidden; 
  }

  .web-image-inner {
    position: relative;
    height: 100%;
    width: 100%;
  }

  .web-image-inner img {
    width: 100%;
    height: 33vh;       
    object-fit: cover;
    border-radius: 6px;
    display: block;
  }

  /* Shutter adjustments */
  .web-shutter-left,
  .web-shutter-right {
    position: absolute;
    top: 0;
    height: 33vh;     
    width: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    transition: transform 0.5s ease;
    pointer-events: none;
    border-radius: 6px;
  }

  .web-shutter-left {
    left: 0;
    transform: translateX(-100%);
    border-radius: 6px 0 0 6px;
  }

  .web-shutter-right {
    right: 0;
    transform: translateX(100%);
    border-radius: 0 6px 6px 0;
  }

  /* Hover effect */
  .web-image-inner:hover .web-shutter-left,
  .web-image-inner:hover .web-shutter-right {
    transform: translateX(0);
  }

  .web-section-subtitle{
    width: 100%;
  font-size: 20px !important;
  }

  /* Overlay text adjustments */
  .web-overlay-content {
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;  
    align-items: center;
    padding-top: 85px;   
    z-index: 2;
  }

  .web-small-text {
    font-size: 13px;
  }
  .web-section-subtitle::before {
    left: -20vw;
    border-radius: 15px;
  
  }

  .web-section-subtitle:hover::before {
    width: 145vw !important;
  }


}
/* Web designing section responsive end */




/* Testomonials parts start */

.testimonial-heading-section {
  width: 100%;
  margin-bottom: 1vh;
  padding: 10px 100px;
  text-align: center;

}

.testimonial-main-heading {
  font-size: 38px;
  font-weight: 650;
  color: #00a0e3;
  margin: 0;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.testimonial-wrapper {
  position: relative;  
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding: 100px 0 140px 30px; 
  background-image: url('../img/main-img/tes.jpg');
  background-size: cover;         
  background-position: center;  
  background-repeat: no-repeat;   
  gap: 10px;
  overflow: hidden;
}


.testimonial-wrapper::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(0, 0, 0, 0.9); 
  z-index: 1; 
}

/* Content ko overlay ke upar lana hai */
.testimonial-wrapper > * {
  position: relative;
  z-index: 2;
}

/* Left Side */
.testimonial-left {
  width: 30%;
}

.testimonial-left h2 {
  font-size: 38px;
  color: white;
  font-weight: 650;
  margin-bottom: 15px;
}

.testimonial-left p {
  font-size: 18px;
  margin-bottom: 35px;
  color: white;
}


.cta-btn {
  padding: 10px 30px;
  border: none;
  background-color: white;
  color: black;
  border-radius: 20px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #00ffff; 
  color: #000;
}


/* Right Side */
.testimonial-right {
  width: 95%;          
  overflow: hidden;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

.testimonial-slider {
  display: flex;
  gap: 20px;         
  transition: transform 0.5s ease-in-out;
}

/* Testimonial Card */

.quote-icon {
  color: #00a0e3;         
  font-size: 20px;        
  margin: 0 6px;          
  vertical-align: middle; 
}

/* Testimonial Card */
.testimonial-card {
  flex: 0 0 calc((100% - 20px) / 2); 
  background-color: white;
  padding: 20px 15px;                
  border-left: 4px solid #007bff;
  border-radius: 10px;
  box-sizing: border-box;
  min-height: 250px;                
  
  display: flex;
  flex-direction: column;
  justify-content: space-between;    
  align-items: flex-start;          
}

/* Card Heading */
.testimonial-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #00a0e3;
  margin-bottom: 10px;
  text-align: left;
  width: 100%;
}

/* Paragraph inside card */
.testimonial-card p {
  font-size: 15px;
  color: #252525;
  margin: 0 0 15px 0;  
  text-align: left;             
  line-height: 1.6;      
  width: 100%;
}

/* Name inside card */
.testimonial-card span {
  font-size: 16px;
  color: #000;
  font-weight: 500;
  margin-top: auto;         
  text-align: left;
}

@media (max-width: 480px) {
  .testimonial-heading-section {
    padding: 20px 10px;
    width: 100%;
    box-sizing: border-box;
  }

  .testimonial-main-heading {
    font-size: 22px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
  }

  .testimonial-wrapper {
    flex-direction: column;
    padding: 20px 15px 30px 15px;
    gap: 25px;
    align-items: center;
    box-sizing: border-box;
  }

  .testimonial-left {
    width: 100%;
    text-align: center;
    padding: 0 10px;
    box-sizing: border-box;
  }

  .testimonial-left h2 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .testimonial-left p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
    word-wrap: break-word;
  }

  .cta-btn {
    font-size: 10px;
    padding: 10px 18px;
  }

  .testimonial-right {
    width: 100%;
    min-height: auto;
    box-sizing: border-box;
    padding: 0;
    overflow: hidden; 
    position: relative;
  }

  .testimonial-slider {
    display: flex;
    flex-direction: row;
    transition: transform 0.5s ease-in-out;
    width: 100%;
  }

  .testimonial-card {
    min-width: 100%; 
    padding: 20px 15px;
    min-height: auto;
    box-sizing: border-box;
    text-align: left;
  }

  .testimonial-card h4 {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .testimonial-card p {
    font-size: 13px !important;
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .testimonial-card span {
    font-size: 13px;
  }

  .star-icons {
    margin: 30px 0;
    text-align: center;
  }

  .star-icons i {
    font-size: 1.8rem;
    margin: 0 2px;
  }
}


@media (min-width: 768px) and (max-width: 1024px) {

  .testimonial-heading-section {
    padding: 20px 15px;
  }

  .testimonial-main-heading {
    font-size: 45px;
  }

  .testimonial-wrapper {
    flex-direction: row; 
    padding: 80px 30px 60px 30px;
    gap: 20px;
  }


  .testimonial-left {
    width: 48%; 
    text-align: left;
  }

  .testimonial-left h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .testimonial-left p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.5;
  }

  .cta-btn {
    padding: 10px 25px;
    font-size: 15px;
  }

  .testimonial-right {
    width: 50%;
    overflow: hidden;
  }

  .testimonial-slider {
    gap: 15px;
  }

  .testimonial-card {
    flex: 0 0 100%; 
    min-height: 300px; 
    padding: 15px 20px;
    box-sizing: border-box;
  }

  .testimonial-card h4 {
    font-size: 18px;
  }

  .testimonial-card h4 + p {
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
  }

  .testimonial-card span {
    font-size: 15px;
  }
}



@media (min-width: 2560px) {
  .testimonial-heading-section {
    padding: 60px 150px;
  }
  
  .testimonial-main-heading {
    font-size: 60px;
    letter-spacing: 2px;
  }

  .testimonial-wrapper {
    padding: 150px 0 120px 80px;
    background-attachment: fixed; 
    gap: 40px;
  }

  .testimonial-left {
    width: 35%;
  }

  .testimonial-left h2 {
    font-size: 60px;
    margin-bottom: 30px;
  }

  .testimonial-left p {
    font-size: 26px;
    margin-bottom: 50px;
    line-height: 1.6;
  }

  .cta-btn {
    padding: 18px 50px;
    font-size: 22px;
    border-radius: 30px;
  }

  .testimonial-right {
    width: 65%;
  }

  .testimonial-slider {
    gap: 40px;
  }

  .testimonial-card {
    flex: 0 0 calc((100% - 40px) / 2); 
    padding: 40px 50px;
    border-left-width: 6px;
    border-radius: 15px;
    min-height: 450px;
  }

  .quote-icon {
    font-size: 32px;
    margin: 0 10px;
  }

  .testimonial-card h4 {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .testimonial-card h4 + p {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 40px;
    line-height: 1.8;
  }

  .testimonial-card span {
    font-size: 24px;
  }
}
/* Testomonials parts End */





/* Why preface section start */


.why-preface {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
  position: relative;
}

.why-heading {
  font-size: 35px;
  color: #00a0e3;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 1.5px; 
}

.section-subtitle-alto1 {
  color: #555; 
  width: 90%;
  position: relative;   
  display: inline-block; 
  z-index: 1;        
  overflow: visible;
}

.section-subtitle-alto1::before {
  content: '';
  position: absolute;
  top: 0;
  left: -35vw;        
  height: 100%;
  width: 0;            
  background-color: #a1ee92;
  z-index: -1;         
  transition: width 1s ease;
  border-radius: 25px;
}

.section-subtitle-alto1:hover::before {
  width: 130.2vw;     
}

.why-preface p {
  font-size: 25px;
}

.why-text {
  font-size: 20px;
  color: #555;
  max-width: 780px;
  margin: 0 auto 50px auto;
  line-height: 1.8;
  font-style: italic;
}

.why-text span {
  color: #00a0e3;
  font-weight: 700;
}

.why-images {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}

.why-item {
  flex: 1 1 250px;
  max-width: 280px;
}




.circle-card {
  background: #ebeaea;
  border-radius: 50%;
  padding: 25px;          
  text-align: center;
  transition: all 0.4s ease;
  overflow: hidden;
  width: 325px;         
  height: 350px;          
  margin: 0 auto;          
}

/* Icon container replacing image */
.circle-card .reason-icon {
  width: 100%;
  height: 40vh; 
  border-radius: 50%;
  background: linear-gradient(135deg, cyan, rgb(118, 148, 148));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.circle-card .reason-icon i {
  font-size: 110px; 
  color: #fff;     
  transition: transform 0.3s ease;
}


   

/* Hover effect for icon inside */
.circle-card:hover .reason-icon i {
  transform: scale(1.15) rotate(3deg); 
}


.circle-card h4 {
  font-size: 15px;
  color: #111;
  margin-top: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Base button styling */
.read-more-why .read-more-btn {
  display: inline-block;
  background-color: #00a0e3;  
  color: #fff;    
  margin-top: 4vh;       
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 160, 227, 0.3);
  cursor: pointer;
}

.read-more-why .read-more-btn:hover {
  background-color: #00e5ff;         
  color: #000;                            
  box-shadow: 0 0 15px 5px rgba(0, 230, 255, 0.6); 
  transform: translateY(-2px);             
  transition: all 0.3s ease;
}
/* Why preface section end */



@media (max-width: 480px) {
  .section-subtitle-alto1 {
    font-size: 14px !important;       
    line-height: 1.5;   
    max-width: 100%;        
    margin: 15px auto 20px auto; 
    text-align: center;
  }
}



@media (max-width: 480px) {
  .why-preface { 
    padding: 35px 15px; 
  }
  .why-heading { 
    font-size: 18px; 
    letter-spacing: 0.8px; 
    margin-bottom: 8px; 
  }
  .why-text { 
    font-size: 15px; 
    line-height: 1.5; 
    max-width: 95%; 
    margin-bottom: 25px; 
  }
  .why-text span { 
    font-size: 15px; 
  }
  .why-images { 
    gap: 55px; 
    justify-content: center; 
  }
  .why-item { 
    flex: 1 1 100%; 
    max-width: 100%; 
  }
  .circle-card { 
    padding: 12px; 
  }
  
  .circle-card h4 { 
    font-size: 15px; 
    margin-top: 10px; 
    font-weight: 800;
    text-transform: uppercase;
  }

  
.circle-card .reason-icon i {
  font-size: 70px; 
  color: #fff;     
  transition: transform 0.3s ease;
}
.circle-card .reason-icon {
  width: 170px;  
  height: 170px;    
  border-radius: 50%;
  background: linear-gradient(135deg, cyan, rgb(118, 148, 148));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  margin: 0 auto;   
}

.circle-card {
  background: #ebeaea;
  border-radius: 50%;
  padding: 25px;          
  text-align: center;
  transition: all 0.4s ease;
  overflow: hidden;
  width: 290px;         
  height: 290px;          
  margin: 0 auto;          
}
}

@media screen and (min-width: 481px) and (max-width: 1024px) {
  .why-preface {
    padding: 30px 12px;
  }

  .why-heading {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .section-subtitle-alto1 {
    width: 95%;
    font-size: 16px;
  }

  .why-preface p {
    font-size: 20px;
  }

  .why-text {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px auto;
  }

  .why-text span {
    font-weight: 700;
    font-size: 18px;
  }

  /* Circle cards container */
  .why-images {
    display: flex;
    flex-wrap: wrap;         
    justify-content: center;
    gap: 30px;                
  }

  .why-item {
    flex: 1 1 calc(50% - 30px); 
    max-width: 350px;
  }

  .circle-card {
    width: 100%;            
    height: 370px;
    margin: 0 auto;
  }

  .circle-card .reason-icon {
    height: 35vh;
  }

  .circle-card .reason-icon i {
    font-size: 80px;
  }

  .circle-card h4 {
    font-size: 14px;
    margin-top: 12px;
  }

  /* Button */
  .read-more-why .read-more-btn {
    padding: 8px 20px;
    margin-top: 5vh;
    font-size: 14px;
  }
}


@media screen and (min-width: 1200px) {
  .why-preface {
    padding: 80px 10vw;
  }

  .why-heading {
    font-size: clamp(35px, 2vw, 60px); 
  }

  .section-subtitle-alto1 {
    font-size: clamp(18px, 1.5vw, 28px);
    width: 70%;
    margin: 0 auto 30px auto;
  }

  .why-text {
    font-size: clamp(18px, 1.2vw, 28px);
    max-width: 1200px; 
    margin: 0 auto 60px auto;
  }

  .why-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: clamp(20px, 2vw, 60px); 
  }

  .why-item {
    flex: 1 1 clamp(250px, 20%, 350px); 
    max-width: 350px;
    margin-bottom: 40px; 
  }

  .circle-card {
    width: 100%;
    height: auto; 
    max-width: 325px; 
    padding: 25px;
  }

  .circle-card .reason-icon {
    width: 100%;
    height: clamp(180px, 20vw, 300px); 
  }

  .circle-card .reason-icon i {
    font-size: clamp(80px, 5vw, 120px);
  }

  .circle-card h4 {
    font-size: clamp(14px, 1.2vw, 20px);
    margin-top: 15px;
  }

  .read-more-why .read-more-btn {
    padding:10px,12px;
    font-size: clamp(14px, 1vw, 18px);
  }
}



/* our clients part starts */
.our-clients-section {
  width: 100%;
  margin: 1px 0;
  text-align: center;
  color: #00a0e3;
}

.our-clients-section h1 {
  font-size: 38px;
  margin-bottom: 10px;
  font-weight: 600;
}

.our-clients-section p {
  font-size: 25px;
  margin-bottom: 30px;
  color: #555;
}

.logo-slider {
  width: 100%;
  overflow: hidden;
  padding: 15px 0;
  background: #fafafa;
  position: relative;
}

.logo-track {
  display: flex;
  gap: 40px;
  align-items: center;
  animation: scroll-left 20s linear infinite; /* 👈 default speed */
  will-change: transform;
}

.logo-track img {
  width: 160px;
  transition: transform 0.5s ease;
  cursor: pointer;
  user-select: none;
}

.logo-track img:hover {
  filter: none;
}

/* Animation keyframes */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* Section title animation */
.section-subtitle-alto2 {
  position: relative;
  display: inline-block;
  width: 55%;
  z-index: 1;
  overflow: visible;
}

.section-subtitle-alto2::before {
  content: '';
  position: absolute;
  top: 0;
  left: -46%;
  height: 100%;
  width: 0;
  background-color: #f077bb;
  z-index: -1;
  transition: width 0.8s ease;
  border-radius: 25px;
}

.section-subtitle-alto2:hover::before {
  width: 105vw;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 768px) {
  .logo-track {
    animation-duration: 15s; /* little faster for smaller screens */
    gap: 25px;
  }

  .logo-track img {
    width: 120px;
  }

  .section-subtitle-alto2 {
    width: 80%;
    font-size: 16px !important;
  }

  .section-subtitle-alto2:hover::before {
    width: 130vw;
  }
}



/* ----- MOBILE VIEW (FAST) ----- */
@media (max-width: 480px) {
  .our-clients-section h1 {
    font-size: 22px;
  }

  .logo-track {
    animation: scroll-left 9s linear infinite !important; /* 👈 full shorthand repeat with new speed */
    gap: 18px;
  }

  .logo-track img {
    width: 95px;
    transition: transform 0.25s ease !important;
  }

  .section-subtitle-alto2 {
    width: 100%;
    font-size: 14px !important;
  }

  .section-subtitle-alto2::before {
    transition: width 1s ease;
  }

  .section-subtitle-alto2:hover::before {
    width: 150vw;
  }
}



   /* our clients parts End */







  /* Mouse ke sath fire part start */ 
#fireCanvas {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
}

/* map sec start */
.map-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 8px;
}
/* map sec End*/





/* Footer parts starts */

.footer {
  background: #121212;
  color: #ccc;
  padding: 60px 30px 30px;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  z-index: 1;
  overflow: hidden;
}


.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-section {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-section h5 {
  font-size: 1.3rem; 
  font-weight: 700; 
  color: #fff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.footer-section p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.footer-section a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: magenta;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}
.footer .footer-section:last-of-type h4 {
    position: relative;  
  color: white;   
  font-weight: 800;     
}

.footer .footer-section:last-of-type h5 {
    position: relative;  
    top: 20px;         
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}


.social-icons a {
  color: #ccc;
  font-size: 1.4rem; 
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: magenta;
  transform: scale(1.2);
}

/* Footer bottom text */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.85rem;
  color: #888;
  border-top: 1px solid #333;
  padding-top: 20px;
}

/* Responsive: mobile */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 40px 15px 20px;
    text-align: left;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }

  .footer-section {
    flex: 1 1 100%;
    min-width: unset;
    width: 100%;
  }

  .footer-section h5 {
    font-size: 1.1rem; /* slightly bigger on mobile */
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .footer-section p,
  .footer-section ul li {
    font-size: 0.85rem;
    line-height: 1.5;
    text-align: left;
  }

  .footer-section ul {
    padding-left: 0;
  }

  .social-icons {
    justify-content: flex-start;
    gap: 12px;
    margin-top: 50px; /* spacing below Follow Us heading on mobile */
  }



  .social-icons a {
    font-size: 1.3rem;
  }

  .footer-bottom {
    margin-top: 30px;
    font-size: 0.75rem;
    padding-top: 15px;
    text-align: left;
  }

  .map-container iframe {
    height: 250px !important;
  }
}

/* Footer parts end */



