
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
  font-family: 'FiraSans';
  src: url("./fonts/FiraSansCondensed-Regular.ttf");
  }
  
  @font-face {
  font-family: 'FiraSans_Semi';
  src: url("./fonts/FiraSansCondensed-SemiBold.ttf");
  }

@font-face {
  font-family: 'FiraSans_L';
  src: url("./fonts/FiraSansCondensed-Light.ttf");
  }

@font-face {
  font-family: 'FiraSans_B';
  src: url("./fonts/FiraSansCondensed-Bold.ttf");
  }

@font-face {
  font-family: 'FiraSans_M';
  src: url("./fonts/FiraSansCondensed-Medium.ttf");
  }


body {
  background: #fff;
  color: #444;
  font-family: FiraSans;
}

a {
  color: #1bb1dc;
  text-decoration: none;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #0a98c0;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 10px 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family:  FiraSans;
  font-weight: 400;
  margin: 0 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #1bb1dc;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #39c0e7;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: #fff;
  height: 70px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.3);
}

#header .logo {
  font-size: 36px;
  margin: 0;
  padding: 0;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header .logo a {
  color: #413e66;
}

#header .logo img {
  max-height: 60px;
}

/* Social Icons */
.social-sidebar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  z-index: 999;
}

.icon-button {
  width: 45px;
  height: 45px;
  background-color: #28a745;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 4px 0 0 4px;
  transition: background-color 0.3s ease;
}

.icon-button:hover {
  background-color: #218838;
}

.contact-vertical {
  width: 45px;
  height: 120px;
  background-color: #28a745;
  color: #fff;
  text-decoration: none;
  border-radius: 4px 0 0 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-sidebar {
  position: fixed;
  top: 50%;
  right: -60px; /* Start off-screen */
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 999;
  transition: right 0.6s ease;
}

.social-sidebar.visible {
  right: 0; /* Slide into view */
}

.contact-vertical span {
  transform: rotate(-90deg);
  font-size: 12px;
  font-family: FiraSans;
  letter-spacing: 1px;
  font-weight: bold;
  text-transform: uppercase;
  white-space: nowrap;
}

/* responsive */

@media (max-width: 768px) {
  .social-sidebar a {
    width: 36px;
    height: 70px;
    font-size: 16px;
  }

  .contact-vertical {
    height: 90px;
  }

  .contact-vertical span {
    font-size: 10px;
  }
}

/* for hiding on mobile */
@media (max-width: 480px) {
.social-sidebar {
display: none;
 }
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 24px;
  font-family: FiraSans_Semi;
  text-transform: none;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: Normal;
  color: #413e66;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
   margin-top: 5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: #4c9d58;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
  font-weight: 400;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #1bb1dc;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #413e66;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(45, 43, 70, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 150px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #413e66;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #4c9d58;
  background-color: #F3F3F3;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #1bb1dc;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}



/* Search Styles */
/* === Search Overlay Container === */

.search-wrapper button{
		 
  background: none;
  border: none;
  font-size: 20px;
  color: #333;
  cursor: pointer;
 }

.search-wrapper button:hover {
  color: #4c9d58;
}

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent; /* transparent white */
  backdrop-filter: blur(0px); /* optional blur */
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 20px;
}

/* === Search Box === */
.search-box {
  width: 90%;
  max-width: 600px;
  position: relative;
}

/* === Search Form === */
.search-box form {
  display: flex;
  background: rgba(255, 255, 255, 0.95);
  border: 5px solid #999999;
  border-radius: 4px;
  overflow: hidden;
}

/* === Search Input === */
.search-box input {
  flex: 1;
  padding: 10px;
  border: none;
  outline: none;
  font-size: 16px;
  background: transparent;
}

/* === Magnifier Button === */
.search-box button {
  padding: -100px;
  background: none;
  border: none;
  font-size: 20px;
  color: #333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-box button:hover {
  color: #007bff;
}

/* === Close Button === */
.close-btn {
  position: absolute;
  top: 2px;
  right: 10;
  background: none;
  border: none;
  font-size: 30px;
  color: #333;
  cursor: pointer;
}

/* === Search Results === */

.search-results {
  display: none; /* hidden until JS shows it */
  margin-top: 20px;
  width: 100%;
  max-height: 300px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #ccc;
  border-radius: 4px;
}

.search-results div {
  padding: 10px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
  font-size: 14px;
}

.search-results div:hover {
  background-color: #f0f0f0;
}

/* === Mobile Responsive === */
@media (max-width: 576px) {
  .search-box form {
    flex-direction: column;
  }

  .search-box input,
  .search-box button {
    width: 100%;
    font-size: 18px;
  }

  .close-btn {
    top: -30px;
    font-size: 24px;
  }
}
#navbar ul {
  margin-right: 20px; /* Adjust value as needed */
}
@media (max-width: 768px) {
  #navbar ul {
    margin-right: 50px; /* Adds space between menu and search icon */
  }

  .floating-search-btn {
    right: 20px; /* Keeps icon near edge but away from menu */
  }
}
/* === End Search Overlay Container === */

/* === Static Banner === */
.banner-container {
 position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-image {
  width: 100%;
  height: 70vh;
  position: relative;
}

.text-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  padding: 1rem;
  /* Optional styling */
  /* background-color: rgba(0, 0, 0, 0.5); */
}

@media (max-width: 991px) {
  .banner-container {
    height: auto;
	width: auto;
    
  }
  .banner-container {
    height: auto !important;
	width:auto !important;
  }
  .banner-container .banner-image {
    width: auto;
	
  }
}

/* === Static Banner === */

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  background: #f5f8fd url("../img/intro-bg.jpg") center top no-repeat;
  background-size: cover;
  padding-top: 90px;
}

#hero .intro-img {
    padding-top: 50px;
}

@media (min-width: 1400px) {
    #hero .intro-img {
    padding-top: 25px;
}
}

@media (max-width: 991px) {
  #hero {
    height: auto;
    padding: 100px 0 60px 0;
  }
  #hero .container {
    height: auto !important;
  }
  #hero .intro-img {
    width: 80%;
  }
}

@media (min-width: 992px) {
  #hero .intro-info {
    padding-top: 100px;
  }
}

@media (max-width: 991px) {
  #hero .intro-info {
    text-align: center;
    padding-top: 40px;
  }
}

#hero .intro-info h2 {
  color: #ffffff;
  font-family:  FiraSans;
  letter-spacing: 2px;
  margin-bottom: 40px;
  font-size: 55px;
  font-weight: normal;
}

#hero .intro-info h2 span {
  color: #1bb1dc;
}

@media (max-width: 991px) {
  #hero .intro-info h2 {
    font-size: 34px;
    margin-bottom: 30px;
  }
}


#hero .intro-info .btn-get-started, #hero .intro-info .btn-services {
  font-family:  FiraSans;
  font-size: 13px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 1px;
  display: inline-block;
  padding: 0px 0px;
  border-radius: 0px;
  transition: 0.5s;
  color: #fff;
  background: none;
  color: #fff;
  }

#hero .intro-info .btn-get-started:hover, #hero .intro-info .btn-services:hover {
  background: none;
  color: #0a98c0;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/
.section-header h3 {
  font-size: 36px;
  color: #4e357f;
  text-align: center;
  font-weight: 700;
  position: relative;
  font-family:  FiraSans;
}

.section-header p {
  text-align: center;
  margin: auto;
  font-size: 15px;
  padding-bottom: 60px;
  color: #535074;
  width: 50%;
}

.section-header2 p {
	font-family:  FiraSans_L;
/*  text-align: center;*/
  text-align: justify;
  margin: auto;
  font-size: 20px;
  padding-bottom: 60px;
  color: #fff;
/*  width: 50%;*/
  width: 99%;
}


/* Section with background
--------------------------------*/
.section-bg {
background: #f5f8fd;
}
.section-bg2 {
background: #6a5d61;
}

.section-bg3 {
background: #5d5155;
}

.section-bg-bandra {
background: #e1e1d8;
}

.section-bg-bandra2 {
background: #58595b;
}






/* Call To Action Section
--------------------------------*/
#call-to-action {
  background: #2d2b46;
  background-size: cover;
  padding: 40px 0;
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #fff;
}

@media (min-width: 991px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 26px;
  border-radius: 3px;
  transition: 0.5s;
  margin: 10px;
  border: 3px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #1bb1dc;
  border: 3px solid #1bb1dc;
}


/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  padding: 0px 0px 0px;
}

.stats .stats-item {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 0px; /* reduced bottom space */
}

.stats .counter-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.stats .purecounter {
  font-size: 120px;
  font-family: FiraSans_B;
  font-weight: 700;
  line-height: 1;
}

.stats .percent {
  font-size: 120px;
  font-family: FiraSans_B;
  font-weight: 700;
  margin-left: 4px;
  line-height: 1;
}

.stats .stats-item p {
  margin-top: 10px;
  margin-bottom: 0px; /* remove extra bottom space */
  font-size: 20px;
  line-height: 25px;
  font-weight: 800;
  font-family: FiraSans_L;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/* Reduce bottom padding of the entire stats section */
.stats.section {
  padding-bottom: 0px; /* adjust as needed */
}

/* Reduce bottom margin of the container */
.stats .container {
  margin-bottom: 0px;
}



/* ----THE DESIGN TEAM (AMIT Image)---Features Section */


/* Base Section */
#features {
  padding: 0px 0px 0px 0px;
/*  background-color:#dcdde7;*/
  background-color:#E2E3ED;
 background-image:url(../img/amit.png);
  background-repeat: no-repeat;
  vertical-align: bottom;
  background-position:right;
  
    
}

#features .fea-text {
  color: #383b3c;
  font-family: FiraSans;
  font-size:18px;
  font-weight: normal;
}

#features .fea-text a {
	font-family: FiraSans;
	letter-spacing: 1px;
	color: #ffffff;
}

#features .fea-text a:hover {
	font-family: FiraSans;
	letter-spacing: 1px;
	color: #1bb1dc;
}

#features h2 {
  color: #231f20;
  font-size:35px;
  font-family: FiraSans;
  font-weight: Regular;
  margin-top:
  
}

@media (min-width: 320px) and (max-width: 991px){
	
	#features	{
	padding: 0px 30px 25px 30px;
	
	}
	
#features h4 {
  font-family: FiraSans;
  font-weight: normal;
  font-size: 28px;
  margin-top: 22px;
  letter-spacing: 1px;
  color: #abadb0;
}	
	
}



/* -----VERTO ABOUT "VERTO IS BORN SECTION"----- About Us Section
--------------------------------*/

 
#about {
  padding: 0px 0;
  padding-bottom: 30px;
}

#about .about-content {
  padding-top: 60px;
}

#about .about-content h2 {
  color: #231f20;
  font-size:35px;
  font-family: FiraSans;
  font-weight: Regular;
}

#about .about-content .bb {
  color: #808080;
  font-size:35px;
  font-family: FiraSans;
  font-weight: Regular;
}

#about .about-content h4 {
  color: #413e66;
  font-family:  FiraSans;
  font-weight: 300;
}

#about .about-content .para {
  color: #383b3c;
  font-family: FiraSans;
  font-size:18px;
  font-weight: normal;
}

#about .fea-text a {
	font-family:  FiraSans;
	letter-spacing: 1px;
	color: #000000;
}

#about .fea-text a:hover {
	font-family:  FiraSans;
	letter-spacing: 1px;
	color: #1bb1dc;

}

#about .about-content h3 {
  color: #858789;
  font-weight: 400;
  font-size: 35px;
  font-style: normal;
}

#about .about-content ul {
  list-style: none;
  padding: 0;
}

#about .about-content ul li {
  padding-bottom: 10px;
}

#about .about-content ul li i {
  font-size: 20px;
  padding-right: 4px;
  color: #1bb1dc;
}

#about .about-img {
  position: relative;
  margin-top: 180px;
/*  margin: 30px 30px 30px 30px;*/
}

#about .about-img img {
  width: 100%;
  border: 0px solid #fff;
  transition: .5s;
}


#about .about-img::before {
  position: absolute;
  left: -31px;
  top: -30px;
  width: 90%;
  height: 92%;
  z-index: -1;
  content: '';
  background-color: #ffffff;
  transition: .5s;
}

#about .about-img::after {
  position: absolute;
  right: -31px;
  bottom: -30px;
  width: 90%;
  height: 92%;
  z-index: -1;
  content: '';
  background-color: #ffffff;
  transition: .5s;
}

#about .about-img2 {
  position: relative;
  text-align:center;
  margin: 0px 0px 0px 0px;
  
}

#about .about-img2 img {
  width: 70%;
  border: 0px solid #fff;
  transition: .5s;
}

#about .about-img2 img:hover {
  width: 70%;
  transform: scale(1.08);
}

.about-video {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
}

.about-video video {
  max-width: 100%;
  height: auto;
  border-radius: 0px;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.2);
}

@media (min-width: 320px) and (max-width: 991px){
	
  #about .about-img {
  position: relative;
  margin-top: 56px;
/*  margin: 30px 30px 30px 30px;*/
}
	
}


.brochure-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  background-color: #fff;
  overflow: hidden;
}

.cta-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  z-index: 2;
}

.cta-image-block img {
  max-width: 300px;
  height: auto;
  border-radius: 8px;
}

.cta-text-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.cta-heading {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #4caf50 !important;
  color: white !important;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  border: none;
  font-size: 16px;
  white-space: nowrap;
  text-align: center;
}

/* Floater above heading */
.floater-top {
  position: absolute;
  top: 40px;
  left: 80%;
  transform: translateX(-50%);
  max-width: 140px;
  opacity: 0.9;
  z-index: 1;
  animation: rotate360 40s linear infinite;
  will-change: transform;
}

/* Floater on right side */
.floater-right {
  position: absolute;
  right: 0;
  bottom: 30px;
  max-width: 190px;
  opacity: 1; /* No fade */
  transform: translateX(0);
  z-index: 1;
  animation: floatSlide 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes floatSlide {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-20px); /* Move left */
  }
  100% {
    transform: translateX(0);
  }
}

/* Floater below button */
.floater-bottom {
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 120px;
  height: auto;
  opacity: 0.8;
  z-index: 1;
  animation: floatPulseBottom 40s linear infinite;
  will-change: transform, opacity;
}
@keyframes floatPulseBottom {
  0% {
    transform: translateX(-50%) rotate(0deg);
  }
  100% {
    transform: translateX(-50%) rotate(-360deg);
  }
}

/* Animations */
@keyframes rotate360 {
  from {
    transform: translateX(-50%) rotate(0deg);
  }
  to {
    transform: translateX(-50%) rotate(360deg);
  }
}

@keyframes floatFade {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  25% {
    transform: translateX(-20px);
    opacity: 1;
  }
  50% {
    transform: translateX(-30px);
    opacity: 0.8;
  }
  75% {
    transform: translateX(-20px);
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 0;
  }
}

@keyframes floatPulse {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
    opacity: 1;
  }
}

/* Optional: hide floaters on mobile */
@media (max-width: 768px) {
  .floater-top,
  .floater-right,
  .floater-bottom {
    display: none;
  }
}



<!-- ======= Start Verto specs Section ======= -->
/* Verto Specs Section */

body {
  margin: 0;
  font-family: 'Fira Sans';
  background: #000;
  color: #FFF;
}

.verto-wrapper {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #000;
}

/* Section layout */
.verto-specs-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 0;
  max-width: 100%;
  box-sizing: border-box;
}

/* Video */
.verto-left video,
.verto-specs-section .verto-video {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9; /* keeps proportions */
  object-fit: cover;
  border-radius: 0px;
  background-color: transparent;
  display: block;
}

/* Right column */
.verto-right {
  display: flex;
  flex-direction: column;
}

/* Header */
.verto-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.verto-header h2 {
  color: #fff;
  font-size: clamp(24px, 2.5vw, 48px); /* responsive font size */
  font-family: 'Fira Sans', sans-serif;
  font-weight: 400;
  text-align: right;
  margin: 0;
}

.verto-icon img {
  width: clamp(40px, 3vw, 72px);
  height: clamp(40px, 3vw, 72px);
  animation: pulse 2s ease-in-out infinite;
  margin: 0;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

/* Table */
.verto-table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(14px, 1.2vw, 18px);
  color: #FFF;
}

.verto-table td {
  padding: 0.2rem 0;
  vertical-align: top;
  font-family: 'Fira Sans', sans-serif;
}

/* Note */
.verto-note {
  font-size: clamp(12px, 1vw, 16px);
  margin-top: 1rem;
  color: #fff;
  margin-right: 80px;
}

/* ===== Responsive Breakpoints ===== */

/* Small phones */
@media (max-width: 480px) {
  .verto-specs-section {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 1rem;
  }
  .verto-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .verto-header h2 { text-align: left; }
}

/* Tablets */
@media (max-width: 768px) {
  .verto-specs-section {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }
  .verto-left video { max-height: none; }
}

/* Medium screens */
@media (min-width: 769px) and (max-width: 1024px) {
  .verto-specs-section { padding: 20px; }
}

/* Large screens */
@media (min-width: 1025px) and (max-width: 1440px) {
  .verto-specs-section { padding: 40px; }
}

/* Ultra-wide (1441px+) */
@media (min-width: 1441px) {
  .verto-specs-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 60px;
    gap: 3rem;
  }
  .verto-left video { max-height: 720px; }
}

/* 4K / 55"+ TVs */
@media (min-width: 3200px) {
  .verto-specs-section {
    max-width: 1920px;
    padding: 80px;
    gap: 4rem;
  }
  .verto-left video { max-height: 900px; }
  .verto-header h2 { font-size: clamp(32px, 2.4vw, 72px); }
  .verto-table { font-size: clamp(16px, 1.2vw, 22px); }
  .verto-note { font-size: clamp(14px, 1vw, 20px); }
}


<!-- ======= End Verto specs Section ======= -->


 <!-- Start Verto colours Section -->
/* Verto Colours Section */
.verto-colours-section {
  background-color: #f5f5f5;
  padding: 60px 20px;
  font-family: FiraSans;
}

#verto-colours h2 {
  color: #231f20;
  font-size: 35px;
  font-family: FiraSans;
  font-weight: 400;
}

#verto-colours .bb {
  color: #808080;
  font-size: 35px;
  font-family: FiraSans;
  font-weight: 400;
}

#verto-colours .vct {
  color: #221f1f;
  font-size: 16px;
  font-family: FiraSans;
  font-weight: 500;
  margin-top: 10px;
  display: block;
}

.verto-colours-container {
  max-width: 1200px;
  margin: 20px auto;
  text-align: center;
}

.verto-colours-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #333;
}

.verto-colours-description {
  font-size: 18px;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-family: FiraSans;
}

.verto-colours-scroll {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 0 20px 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.verto-colours-scroll::-webkit-scrollbar {
  display: none;
}

.verto-colour-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 180px;
  text-align: center;
  transition: transform 0.4s ease;
  position: relative;
}

/* Hover wrapper inside each card */
.hover-card {
  position: relative;
  width: 100%;
  overflow: hidden;
 /* border-radius: 8px;*/
  cursor: pointer;
}

/* Image styling */
.hover-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.hover-card:hover img {
  transform: scale(1.25);
}

/* Green description overlay */
.hover-description {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6); /* semi-transparent black */
  color: #fff;
  padding: 8px;
  font-size: 14px;
  font-family: 'FiraSans';
  line-height: 1.2;
  border-radius: 0; /* removes any curve */
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hover-card:hover .hover-description {
  opacity: 1;
  transform: translateY(0);
}
/* Responsive tweaks */
@media (max-width: 480px) {
  .verto-colours-scroll {
    gap: 12px;
    padding: 0 10px 10px;
  }

  .verto-colour-card {
    width: 140px;
  }

  .verto-colours-title {
    font-size: 26px;
  }

  .verto-colours-description {
    font-size: 15px;
  }

  #verto-colours h2,
  #verto-colours .bb {
    font-size: 28px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .verto-colour-card {
    width: 160px;
  }

  .verto-colours-title {
    font-size: 28px;
  }

  .verto-colours-description {
    font-size: 16px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .verto-colour-card {
    width: 170px;
  }

  .verto-colours-title {
    font-size: 30px;
  }

  .verto-colours-description {
    font-size: 17px;
  }
}

@media (min-width: 1025px) {
  .verto-colour-card {
    width: 180px;
  }

  .verto-colours-title {
    font-size: 32px;
  }

  .verto-colours-description {
    font-size: 18px;
  }
}

  <!-- End Verto colours Section -->
 
/* Portfolio Section
--------------------------------*/
#portfolio {
  padding: 60px 0; /* section spacing: 60px top & bottom */
  background: #FFF;
}

#portfolio .section-header {
  margin-top: 40px; /* spacing above header */
}

#portfolio .section-header h3 {
  font-family: FiraSans_B;
  letter-spacing: 1px;
  font-size: 35px;
  font-weight: bold;
  margin: 0;
  color: #000;
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 1px 0 18px 0;
  list-style: none;
  text-align: center;
  font-family: FiraSans_L;
  font-size: 30px;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 6px 10px;
  font-size: 16px;
  line-height: 20px;
  color: #413e66;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  color: #1bb1dc;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

#portfolio .portfolio-item .portfolio-wrap {
  overflow: hidden;
  position: relative;
  margin: 0;
}

#portfolio .portfolio-item .portfolio-wrap:hover img {
  opacity: 0.4;
  transition: 0.3s;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  opacity: 0;
  transition: 0.2s linear;
}

#portfolio .portfolio-item .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Portfolio Info (titles & descriptions)
--------------------------------------------------------------*/
#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 {
  font-size: 22px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 0;
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info h4 a:hover {
  color: #1bb1dc;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #f8fcff;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

/* ✅ Hide description for video items */
.portfolio-item.filter-video .portfolio-info p,
.portfolio-item.filter-video .portfolio-info h4 {
  display: none !important;
  visibility: hidden;
  height: 0;
  margin: 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Portfolio Info (icons)
--------------------------------------------------------------*/
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: #4e9a5a;
  border-radius: 50%;
  margin: 10px 4px 0 4px;
  text-align: center;
  line-height: 1;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details i {
  font-size: 22px;
  color: #fff;
  line-height: 0;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover {
  background: #8ddc9a;
}

#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-preview:hover i,
#portfolio .portfolio-item .portfolio-wrap .portfolio-info .link-details:hover i {
  color: #fff;
}

#portfolio .portfolio-item .portfolio-wrap:hover {
  background: #282646;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #1bb1dc;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1bb1dc;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(65, 62, 102, 0.08);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# GLightbox Centering Fix
--------------------------------------------------------------*/
.glightbox-container {
  padding: 40px 0; /* breathing room top & bottom */
  box-sizing: border-box;
  display: flex;
  align-items: center;   /* center vertically */
  justify-content: center; /* center horizontally */
}

.glightbox-slide {
  margin: 0; /* no extra offset */
}

/*--------------------------------------------------------------
# Responsive Tweaks
--------------------------------------------------------------*/
@media (max-width: 768px) {
  #portfolio .section-header h3 {
    font-size: 28px;
    margin-top: 40px;
  }

  #portfolio #portfolio-flters {
    font-size: 20px;
  }

  #portfolio .portfolio-item {
    margin-bottom: 20px;
  }

  #portfolio .portfolio-wrap .portfolio-info p {
    font-size: 12px;
  }

  #portfolio .portfolio-wrap .portfolio-info .link-preview,
  #portfolio .portfolio-wrap .portfolio-info .link-details {
    width: 40px;
    height: 40px;
  }

  #portfolio .portfolio-wrap .portfolio-info .link-preview i,
  #portfolio .portfolio-wrap .portfolio-info .link-details i {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  #portfolio .section-header h3 {
    font-size: 24px;
  }

  #portfolio .portfolio-item {
    margin-bottom: 15px;
  }
}



/* Testimonials Section
--------------------------------*/
#testimonials {
  padding: 60px 0;
  background-color:#4e9a5a;
}

#testimonials .section-header {
  margin-bottom: 0px;
  
}

#testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 0%;
  border: 0px solid #fff;
  float: left;
}

#testimonials .testimonial-item .testimonial-img2 {
  width: 120px;
  border-radius: 0%;
  border: 0px solid #fff;
  float: right;
}

@media (max-width: 767px) {
	
#testimonials .testimonial-item {
    text-align: center;
  }
  
#testimonials .testimonial-item .testimonial-img {
   /*float: left;*/
    margin: 0px;
    visibility:visible;
	width:50px !important;
	
  }
  
   #testimonials .testimonial-item .testimonial-img2 {
  /*float: right;*/
    margin: 0px;
	visibility:visible;
	width:50px !important;
	
  }
  
   
  #testimonials .testimonial-item p {
  padding: 0px 60px 0px 60px;
  text-align:center;
}

#testimonials .section-header h3 {
  font-family:  FiraSans; 
  letter-spacing: 1px;
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 20px 0;
  color: #ffffff;
  margin-left: 0px;
   text-align:center;
}

}


/*#testimonials .testimonial-item h3 {
  font-family:  FiraSans; 
  letter-spacing: 1px;
  font-size: 30px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #fff;
  margin-left: 140px;
}*/

#testimonials .section-header h3 {
  font-size: 36px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  position: relative;
  font-family:  FiraSans;
  
}

#testimonials .testimonial-item h4 {
  font-family:  FiraSans;
  font-size: 14px;
  letter-spacing: 1px;
  color: #fff;
  margin: 0 0 15px 0;
  margin-left: 140px;
   text-align:center;
}

#testimonials .testimonial-item p {
	font-family:  FiraSans_L;
	 letter-spacing: 1px;
	color: #fff;
    margin: 0 0 15px 140px;
	 text-align:center;
}

@media (min-width: 992px) {
  #testimonials .testimonial-item p {
	  font-family:  FiraSans_L;
	  color: #fff;
	  width: 80%;
  }
}

@media (max-width: 767px) {
  #testimonials .testimonial-item h3, #testimonials .testimonial-item h4, #testimonials .testimonial-item p {
    margin-left: 0;
  }
}

#testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

#testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #1bb1dc;
}

#testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #1bb1dc;
}





/* PRESS Page  Frequently Asked Questions Section
--------------------------------*/
#faq {
  background-color:#ffffff;
  padding: 60px 0;
  overflow: hidden;
}



#faq .faq-list {
  padding: 0;
  list-style: none;
}

#faq .hd {
  color: #bd252c;
  font-size:18px;
  font-family: FiraSans;
  font-weight: Bold;
  text-align:left;
  
}


#faq h3 {
  color: #808080;
  font-size:35px;
  font-family: FiraSans_B;
  font-weight: Bold;
  text-align:left;
  margin-bottom: 40px;
  padding: 0px 0 0 25px;
}

#faq .bb {
  color: #000000;
  font-size:35px;
  font-family: FiraSans_B;
  font-weight: Bold;
  text-align:left;
  margin-bottom: 40px;
  padding: 0px 0 0 0px;
}


#faq h2 {
	font-family:  FiraSans_L;
	font-weight:normal;
	font-size:50px;
	color:#97948f;
	text-align:left;
  margin-bottom: 40px;
  padding: 0px 0 0 25px;
/*  text-align:left;*/
}



#faq h4 {
	font-family: FiraSans_L;
	font-weight:normal;
	font-size:28px;
	color:#44515c;
  margin-bottom: 0;
 /*  padding: 0px 0 0 25px;*/
  padding: 5px 0 0 0px;
  
}

#faq .hd2 {
	font-family: FiraSans_M;
	font-weight:Bold;
	font-size:38px;
	color:#44515c;
  margin-bottom: 0;
 /*  padding: 0px 0 0 25px;*/
  padding: 5px 0 0 0px;
  
}


#faq .faq-list li {
  border-bottom: 1px solid #858581;
  margin-bottom: 20px;
  padding-bottom: 20px;
  margin-left: 30px;
  /*margin-left: 10px;
  margin-right: 10px;*/
}

#faq .faq-list .question {
  display: block;
  position: relative;
  font-family:  FiraSans_B;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
 /* padding-left: 25px;*/
   padding-left: 0px;
 /* cursor: pointer;*/
  color: #3c3c3b;
/*  transition: 0.3s;*/
}

/*#faq .faq-list i {
  font-size: 16px;
  position: absolute;
  left: 0;
  top: -2px;
}*/

#faq .faq-list p {
	font-family: FiraSans;
	font-weight:normal;
	font-size:16px;
  margin-bottom: 0;
  padding-top: 0px;
/*  padding: 5px 0 0 25px;*/
   padding-left: 0px;
   padding-right: 5px;
  
}

@media (max-width: 574px) {
  #faq .faq-list p {
	font-family: FiraSans;
	font-weight:normal;
	font-size:12px;
  margin-bottom: 0;
  padding-top: 5px;
/*  padding: 5px 0 0 25px;*/
   padding-left: 0px;
   padding-right: 15px;
   word-break: break-word;
   
   
   
     
}

#faq .faq-list li {
  border-bottom: 1px solid #858581;
  margin-bottom: 20px;
  padding-bottom: 20px;
  margin-left: 15px;
  margin-right: 15px;
  /*margin-left: 10px;
  margin-right: 10px;*/
}

#faq h3 {
	font-family: FiraSans_B;
	font-weight:normal;
	font-size:50px;
	color:#97948f;
	text-align:left;
  margin-bottom: 40px;
  padding: 0px 0 0 12px;
/*  text-align:left;*/
}
}

#faq a {
 /* color: #3c3c3b;*/
  color: #3c3c3b;;
}

#faq hover {
  color: #3c3c3b;
}

#faq .faq-pagination a {
  color: #fff;
/*  color: #fff;;*/
}

.faq .faq-pagination {
  color: #816a6e;
}

.faq .faq-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.faq .faq-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}


.faq .faq-pagination li a {
   color: #493c3e;
   padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq .faq-pagination li.active, .faq .faq-pagination li:hover {
  background: #58a747;
}

.faq .faq-pagination li.active a, .faq .faq-pagination li:hover a {
  color: #58a747;
}

/* Floater image block */
/*.faq-floater {
  outline: 2px dashed red;
}*/
/* Base floater style */
.faq-floater {
  position: absolute;
  z-index: 10;
}

.faq-floater img {
  width: 100%;
  height: auto;
  transform-origin: center center;
}

/* Individual positions + widths */
.floater-1 {
  top: 1350px;
  right: -10px;
  width: 180px;   /* Floater 1 width */
}

.floater-2 {
  top: 1850px;
  right: 0px;
  width: 120px;   /* Floater 2 width */
}

.floater-3 {
  top: 1980px;
  right: 40px;
  width: 170px;   /* Floater 3 width */
}

/* Rotation classes */
/*.rotate-20 img {
  transform: rotate(10deg);
}

.rotate--100 img {
  transform: rotate(-100deg);
}

.rotate-90 img {
  transform: rotate(280deg);
}*/

/* Responsive fallback */

/* Spin animation */
@keyframes spin360 {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Rocking animation (front/back tilt) */
@keyframes rock {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(10deg); }
  50%  { transform: rotate(0deg); }
  75%  { transform: rotate(-10deg); }
  100% { transform: rotate(0deg); }
}

/* Floater animations */
.floater-1 img { animation: spin360 15s linear infinite; }
.floater-2 img { animation: rock 4s ease-in-out infinite; }
.floater-3 img { animation: spin360 30s linear infinite; }

@media (max-width: 768px) {
  .faq-floater {
    position: static;
    width: 100% !important; /* force full width on small screens */
    margin: 20px auto;
    text-align: center;
  }

  .faq-floater img {
    max-width: 90%;
    transform: none !important;
  }
}


/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #f9f9fb;
  min-height: 40px;
  margin-top: 90px;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 10px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #555186;
  content: "/";
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
/* === Footer Base === */
#footer {
  padding: 0;
  font-size: 11px;
  background: #fff;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #4D4D4F;
}

#footer .footer-top .footer-info {
  margin-bottom: 20px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0;
  line-height: 1;
  font-family: FiraSans;
  color: #413e66;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#footer .footer-top .footer-info p {
  font-size: 13px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: FiraSans;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 11px;
  font-weight: bold;
  color: #413e66;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 10px;
}

#footer .footer-top p,
#footer .footer-top .footer-links p {
  font-size: 13px;
  font-family: FiraSans;
  letter-spacing: 1px;
  font-weight: normal;
  color: #fff;
  text-transform: none;
  position: relative;
  padding-bottom: 1px;
  text-align: center;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
}

#footer .footer-top .footer-links ul a:hover {
  color: #1bb1dc;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

/* === Footer Logo === */
#footer .footer-logo {
  width: 240px;
  max-width: 100%;
  height: auto;
}

/* === Footer Menu === */
#footer .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
  font-size: 14px;
  font-family: FiraSans;
  letter-spacing: 1px;
  font-weight: normal;
  color: #fff;
  text-transform: none;
  position: relative;
  padding-top: 25px;
  padding-bottom: 1px;
}

#footer .menu a {
  color: #fff;
  text-decoration: none;
}

#footer .menu a:hover {
  color: #1bb1dc;
}

/* === Social Media Icons === */
#footer .social-links {
  margin-top: 15px;
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

#footer .social-links a {
  color: #fff;
  font-size: 16px;
  transition: color 0.3s ease;
}

#footer .social-links a:hover {
  color: #1bb1dc;
}

/* === Responsive Media Queries === */
@media (max-width: 574px) {
  #footer .footer-top {
    padding: 30px 0;
    background: #545456;
  }

  #footer .menu {
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    padding-top: 10px;
    gap: 10px;
  }

  #footer .social-links {
    justify-content: center;
    margin-top: 20px;
  }

  #footer .social-links a {
    font-size: 18px;
  }

  #footer .footer-top .footer-info p,
  #footer .footer-top .footer-links p {
    font-size: 12px;
    text-align: center;
  }

  #footer .footer-top .footer-info h3 {
    font-size: 24px;
    text-align: center;
  }

  #footer .footer-top .footer-links {
    text-align: center;
  }

  #footer .footer-logo {
    width: 100px;
  }
}


/*--------------------------------------------------------------
# Footer_f change by me #contact-footer
--------------------------------------------------------------*/
#contact-body {
  background: #fff;
  padding: 60px 0;
  font-family: 'FiraSans';
}

.contact-image img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-form h3 {
  font-size: 28px;
  font-weight: bold;
  color: #413e66;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.contact-form p {
  font-size: 14px;
  color: #535074;
  margin-bottom: 20px;
}

.contact-form .form-group {
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #dce1ec;
  font-size: 14px;
  border-radius: 3px;
  box-shadow: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #8eb248;
  outline: none;
}

.contact-form .captcha {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #535074;
}

.contact-form .disclaimer {
  font-size: 12px;
  color: #999;
  margin-bottom: 10px;
}

.contact-form button {
  background: #8eb248;
  color: #fff;
  border: none;
  padding: 10px 30px;
  font-size: 14px;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.3s;
}

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

.contact-address h4 {
  font-size: 14px;
  font-weight: bold;
  color: #413e66;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.contact-address p {
  font-size: 13px;
  line-height: 24px;
  color: #535074;
}

.contact-map iframe {
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-form h3 {
    font-size: 22px;
  }

  .contact-form button {
    width: 100%;
  }

  .contact-image {
    margin-bottom: 30px;
  }
}




<!--aqi-section start-->

#aqi-widget-section {
  font-family: Fira Sans;
  background-color: #d2cecc;
  padding: 0px 0px;
  text-align: center;
}

.aqi-title {
  font-weight: Regular;
  font-size: 35px;
  margin-bottom: 24px;
  color: #333333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.widget-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 0px;
}

.widget-box {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 8px;mg
  width: 300px;
  box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  flex: 0 0 140px;
}

/* Responsive breakpoints */
/* Max width: 1400px */
@media (max-width: 1400px) {
  .widget-column {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Max width: 1200px */
@media (max-width: 1200px) {
  .widget-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Max width: 992px */
@media (max-width: 992px) {
  .widget-column {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Max width: 768px */
@media (max-width: 768px) {
  .widget-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Max width: 576px */
@media (max-width: 576px) {
  .widget-column {
    grid-template-columns: 1fr;
  }
}

/* Max width: 480px */
@media (max-width: 480px) {
  .widget-grid {
    grid-template-columns: 1fr;
  }
}

<!--aqi-section end-->

<!--for home page third section video section-->
/* Wrapper for the entire video thumbnail block */
.video-thumbnail-wrapper {
  position: relative;
  width: 550px;
  height: 270px;
  margin: 100px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.video-overlay {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;   /* stable ratio, no jump */
  background-color: #ffffff; /* pure white */
  cursor: pointer;
}

.video-thumbnail-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  image-rendering: crisp-edges;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 18px;
  color: #d32f2f;
  transition: background-color 0.3s ease;
  animation: pulse 1.8s infinite ease-in-out;
}

.play-button:hover {
  background-color: rgba(255, 255, 255, 1);
}

.play-icon {
  font-size: 24px;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

/* Modal Styles */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.video-frame {
  position: relative;
  background: #fff;
  padding: 0px;
  border-radius: 0px;
  max-width: 90%;
  max-height: 90%;
}

.responsive-video {
  width: 80vw;            /* scales with viewport */
  aspect-ratio: 16 / 9;   /* keeps ratio consistent */
  max-width: 800px;       /* your chosen cap */
  max-height: 90vh;       /* never taller than screen */
  border-radius: 0px;
  display: block;
  margin: 0 auto;
}

.close-btn {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

<!--Third video home page-->

<!--verto-insta-section start-->
.insta-section {
  width: 100%;
  background: #fff;
}

.insta-header {
  background: #dddedf;
  text-align: center;
  padding: 12px 20px;
}

.insta-title {
  font-size: 35px;
  font-weight: 400;
  color: #221f1f;
  margin: 0;
}
.insta-title span {
  font-weight: 400;
  color: #808080;
  margin-left: 8px;
}

/* Marquee container */
.insta-marquee {
  position: relative;
  width: 100%;
  overflow: hidden; /* hide overflow for marquee */
  padding: 40px 0;  /* vertical rhythm */
  background: #fff;
}

/* Track that moves */
/* Section */
.insta-section {
  width: 100%;
  background: #fff;
}

.insta-header {
  background: #dddedf;
  text-align: center;
  padding: 12px 20px;
}

.insta-title {
  font-size: 35px;
  font-weight: 400;
  color: #221f1f;
  margin: 0;
}
.insta-title span {
  font-weight: 400;
  color: #808080;
  margin-left: 8px;
}

/* Marquee container */
.insta-marquee {
  position: relative;
  width: 100%;
  overflow: hidden; /* hide overflow for marquee */
  padding: 40px 0;  /* vertical rhythm */
  background: #fff;
}

/* Track that moves */
.insta-track {
  display: flex;              /* flex for horizontal layout */
  width: max-content;         /* let track size itself to its content */
  gap: 20px;
  will-change: transform;
  animation: insta-scroll 120s linear infinite;
}

/* Pause on hover */
.insta-marquee:hover .insta-track {
  animation-play-state: paused;
}

/* Card */
.insta-card {
  flex: 0 0 auto;
  width: 180px;
  background: #fff;
  padding: 2px;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
  box-shadow: none;
}
.insta-card:hover {
  transform: scale(1.05);
}

.insta-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0px;
  margin-bottom: 10px;
}

/* Hide native scrollbar if any wrappers exist */
.insta-marquee::-webkit-scrollbar { display: none; }
.insta-marquee { scrollbar-width: none; }

/* Responsive */
@media (max-width: 768px) {
  .insta-title { font-size: 28px; }
  .insta-card { width: 150px; padding: 12px; }
}
@media (max-width: 480px) {
  .insta-title { font-size: 24px; }
  .insta-card { width: 130px; padding: 10px; }
}

/* Keyframes: translate track to the left by half its total width */
@keyframes insta-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* since you duplicated once */
}

<!--for contact form-->
body {
  font-family: 'Fira Sans';
  margin: 0;
  background: #f9f9f9;
}

.contact-section {
  background: #fff;
  padding: 60px 20px;
  font-family: 'FiraSans';
}


.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.contact-left img {
  width: 100%;
  height: 550px; /* fix: add px unit */
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.contact-address {
  margin-top: 20px;
  line-height: 1.6;
  color: #333;
}

.contact-address h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.contact-address p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 0;
}

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

.contact-form h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-form p {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form label {
  font-size: 16px;
  font-weight: 500;
  margin-top: 2px;
  color: #333;
}

.contact-form button {
  background-color: #4CAF50;
  color: white;
  padding: 14px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
}

.contact-form button:hover {
  background-color: #43a047;
}

.contact-map {
  margin-top: 10px;
  border-radius: 8px;
  overflow: hidden;
}

#formResponse {
  margin-top: 10px;
  font-weight: 600;
  font-size: 16px;
  padding: 10px;
  border-radius: 4px;
  background-color: #f0f0f0;
}
/* Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-left img {
    height: 300px;
  }
}
