/*

TemplateMo 569 Edu Meeting

https://templatemo.com/tm-569-edu-meeting

*/

/* ---------------------------------------------
Table of contents
------------------------------------------------
01. font & reset css
02. reset
03. global styles
04. header
05. banner
06. features
07. testimonials
08. contact
09. footer
10. preloader
11. search
12. portfolio

--------------------------------------------- */
/* 
---------------------------------------------
font & reset css
--------------------------------------------- 
*/
@import url("https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900");
/* 
---------------------------------------------
reset
--------------------------------------------- 
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, div
pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q,
s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
figure, header, nav, section, article, aside, footer, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.clearfix {
  display: inline-block;
}

html[xmlns] .clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

ul, li {
  padding: 0;
  margin: 0;
  list-style: none;
}

header, nav, section, article, aside, footer, hgroup {
  display: block;
}

* {
  box-sizing: border-box;
}

html, body {
  font-family: 'Goli', sans-serif;
  font-weight: 400;
  background-color: #fff;
  font-size: 16px;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none !important;
  color: #3CF;
  /* display: flex; */
  /* justify-content: center;
  align-items: center; */
  font-weight: 600;
  color: #fff;
}

a:hover {
	color: #FC3;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0px;
  margin-bottom: 0px;
}

ul {
  margin-bottom: 0px;
}

p {
  font-size: 14px;
  line-height: 20px;
  color: #2a2a2a;
}

img {
  width: 100%;
  overflow: hidden;
}

/* 
---------------------------------------------
global styles
--------------------------------------------- 
*/
html,
body {
  background: #fff;
  font-family: 'Goli', sans-serif;
}

::selection {
  background: #f5a425;
  color: #fff;
}

::-moz-selection {
  background: #f5a425;
  color: #fff;
}

@media (max-width: 991px) {
  html, body {
    overflow-x: hidden;
  }
  .mobile-top-fix {
    margin-top: 30px;
    margin-bottom: 0px;
  }
  .mobile-bottom-fix {
    margin-bottom: 30px;
  }
  .mobile-bottom-fix-big {
    margin-bottom: 60px;
  }
}

.main-button-red a {
  font-size: 13px;
  color: #fff;
  background-color: #a12c2f;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 22px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .3s;
}

.main-button-red a:hover {
  opacity: 0.9;
}

.main-button-yellow a {
  font-size: 13px;
  color: #fff;
  background-color: #f5a425;
  padding: 12px 30px;
  display: inline-block;
  border-radius: 22px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all .3s;
}

.main-button-yellow a:hover {
  opacity: 0.9;
}

.section-heading h2 {
  line-height: 40px;
  margin-top: 0px;
  margin-bottom: 50px; 
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(250,250,250,0.15);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}


/* 
---------------------------------------------
header
--------------------------------------------- 
*/



.header-area {
  /* background-color: rgba(250,250,250,0.15); */
  position: absolute;
  /* top: 40px; */
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area .main-nav {
  min-height: 80px;
  background: transparent;
}

.header-area .main-nav .logo {
  line-height: 100px;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  float: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}




/* Adding arrow icon */
.get-quote-btn::after {
  content: '→';
  font-size: 18px;
  transition: 0.3s;
}

.get-quote-btn:hover::after {
  transform: translateX(5px);
}

.background-header .main-nav .logo {
  line-height: 75px;
}

.background-header .nav {
  margin-top: 20px !important;
}

.header-area .main-nav .nav {
  float: inline-start;
  margin-right: 0px;
  background-color: transparent;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 100px; 
  width: auto; 
}

.header-area .main-nav .nav li {
  display: inline-block;
  border-radius: 20px; /* Rounded corners */
  overflow: hidden; /* Prevents content from overflowing the border-radius */
  transition: 0.3s ease-in-out;
}

.header-area .main-nav .nav li a {
  display: block;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.3s ease;
  height: 40px;
  line-height: 40px;
  letter-spacing: 1px;
  padding: 0 15px; /* Adjust padding for a better look */
  border-radius: 20px; /* Ensures the button itself is rounded */
}

/* Add hover effect */
.header-area .main-nav .nav li a:hover {
  background: rgba(255, 255, 255, 0.932); /* Subtle background effect */
  color: black;
}


.header-area .main-nav .nav li.has-sub {
  position: relative;
  padding-right: 15px;
}

.header-area .main-nav .nav li.has-sub:after {
  font-family: FontAwesome;
  content: "\f107";
  font-size: 12px;
  color: #fff;
  position: absolute;
  right: 5px;
  top: 12px;
}

.background-header .main-nav .nav li.has-sub:after {
  color: #1e1e1e;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu {
  position: absolute;
  width: 200px;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
  top: 40px;
  opacity: 0;
  transition: all .3s;
  transform: translateY(+2em);
  visibility: hidden;
  z-index: -1;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li {
  margin-left: 0px;
  padding-left: 0px;
  padding-right: 0px;
}

.header-area .main-nav .nav li.has-sub ul.sub-menu li a {
  opacity: 1;
  display: block;
  background: #f7f7f7;
  color: #2a2a2a!important;
  padding-left: 20px;
  height: 40px;
  line-height: 40px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  font-size: 13px;
  font-weight: 400;
  border-bottom: 1px solid #eee;
}

.header-area .main-nav .nav li.has-sub ul li a:hover {
  background: #fff;
  color: #f5a425!important;
  padding-left: 25px;
}

.header-area .main-nav .nav li.has-sub ul li a:hover:before {
  width: 3px;
}

.header-area .main-nav .nav li.has-sub:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
  z-index: 1;
  transform: translateY(0%);
  transition-delay: 0s, 0s, 0.3s;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 33px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 40px;
  display: none;
}

.background-header .main-nav .menu-trigger {
  top: 23px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.background-header .main-nav .menu-trigger span,
.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #1e1e1e;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.background-header .main-nav .menu-trigger span:before,
.background-header .main-nav .menu-trigger span:after {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #1e1e1e;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #1e1e1e;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #1e1e1e;
}

.header-area.header-sticky {
  min-height: 80px;
}

.header-area.header-sticky .nav li a.active {
  color: #f5a425;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 7px;
    padding-right: 7px;
  }
  .header-area .main-nav:before {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-area .main-nav .logo {
    color: #1e1e1e;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: #f5a425!important;
    opacity: 1;
  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }
  .header-area {
    background-color: #f7f7f7;
    padding: 0px 15px;
    height: 100px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 30px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area.header-sticky .nav {
    margin-top: 100px !important;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .header-area .main-nav .nav li a {
    height: 50px !important;
    line-height: 50px !important;
    padding: 0px !important;
    border: none !important;
    background: #f7f7f7 !important;
    color: #191a20 !important;
  }
  .header-area .main-nav .nav li a:hover {
    background: #eee !important;
    color: #f5a425!important;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    position: relative;
    visibility: inherit;
    opacity: 1;
    z-index: 1;
    transform: translateY(0%);
    top: 0px;
    width: 100%;
    box-shadow: none;
    height: 0px;
    transition: all 0s;
  }
  .header-area .main-nav .nav li.submenu ul li a {
    font-size: 12px;
    font-weight: 400;
  }
  .header-area .main-nav .nav li.submenu ul li a:hover:before {
    width: 0px;
  }
  .header-area .main-nav .nav li.has-sub ul.sub-menu {
    height: auto;
  }
  .header-area .main-nav .nav li.has-sub:after {
    color: #3B566E;
    right: 30px;
    font-size: 14px;
    top: 15px;
  }
  .header-area .main-nav .nav li.submenu:hover ul, .header-area .main-nav .nav li.submenu:focus ul {
    height: 0px;
  }
}

@media (min-width: 767px) {
  .header-area .main-nav .nav {
    display: flex !important;
  }
}




/*
---------------------------------------------
upcoming meetings
---------------------------------------------
*/

section.upcoming-meetings {
  background-color: #212121;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 110px;
}

section.upcoming-meetings .section-heading {
  text-align: center;
}

section.upcoming-meetings .categories {
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-right: 45px;
}

section.upcoming-meetings .categories h4 {
  font-size: 18px;
  font-weight: 600;
  color: #1f272b;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

section.upcoming-meetings .categories ul li {
  display: inline-block;
  margin-bottom: 15px;
}

section.upcoming-meetings .categories ul li a {
  font-size: 15px;
  color: #1f272b;
  font-weight: 500;
  transition: all .3s;
}

section.upcoming-meetings .categories ul li a:hover {
  color: #a12c2f;
}

section.upcoming-meetings .categories .main-button-red {
  border-top: 1px solid #eee;
  padding-top: 30px;
  margin-top: 15px;
}

section.upcoming-meetings .categories .main-button-red a {
  width: 100%;
  text-align: center;
}
/* 
.meeting-item {
  margin-bottom: 30px;
}

.meeting-item .thumb {
  position: relative;
}

.meeting-item .thumb img {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.meeting-item .thumb .price {
  position: absolute;
  left: 20px;
  top: 20px;
}

.meeting-item .thumb .price span {
  font-size: 16px;
  color: #1f272b;
  font-weight: 600;
  background-color: rgba(250,250,250,0.9);
  padding: 7px 12px;
  border-radius: 10px;
}

.meeting-item .down-content {
  background-color: #fff;
  padding: 30px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.meeting-item .down-content .date {
  float: left;
  text-align: center;
  display: inline-block;
  margin-right: 20px;
}

.meeting-item .down-content .date h6 {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 600;
  color: #a12c2f;
}

.meeting-item .down-content .date span {
  display: block;
  color: #1f272b;
  font-size: 22px;
  margin-top: 7px;
}

.meeting-item .down-content h4 {
  font-size: 18px;
  color: #1f272b;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

.meeting-item .down-content p {
  margin-left: 50px;
  color: #1f272b;
  font-size: 14px;
} */






}

/* Overlay Effect */
.hero-overlay {
  /* background: rgba(0, 0, 0, 0.5);  */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text Styling */
.hero-content {
  color: #fff;
  text-align: center;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: 7.1rem;
  font-weight: bold;
  margin-top: 10px;
  line-height: 0.8;
 
  text-align: center;
}
.heros{
  margin-top: 15rem;
}


.hero-title span{
  background: linear-gradient(45deg, #fb974b, #fd005a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.get-quote-btn {
  width: 50px;  /* Adjust size as needed */
  height: 50px; /* Ensure it's a perfect circle */
  padding: 0;   /* Remove extra padding */
  font-size: 14px;
  border-radius: 50%;
  background: linear-gradient(45deg, #fb974b, #fd005a);
  border: none;
  color: white;
  transition: 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.get-quote-btns {
  margin-top: 3rem;
  padding: 16px 25px 15px 32px;
  font-size: 16px;
  border-radius: 50px;
  background: linear-gradient(45deg, #fb974b, #fd005a);
  border: none;
  color: white;
  transition: 0.3s ease-in-out;
}
.get-quote-btns::after {
  content: '→';
  font-size: 18px;
  transition: 0.3s;
  margin-left: 7px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 6rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .get-quote-btns {
    font-size: 14px;
    padding: 14px 22px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .get-quote-btns {
    font-size: 13px;
    padding: 12px 20px;
  }
}

@media (max-width: 576px) {
  .hero-overlay {
    padding: 3rem 1rem;
  }

  .hero-title {
    font-size: 2rem;
  }
  .heros{
    margin-top: 8rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .get-quote-btns {
    font-size: 12px;
    padding: 10px 18px;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
  }

  .get-quote-btns {
    font-size: 11px;
    padding: 8px 16px;
  }
}



.get-quote-btns:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg,#fd005a, #fb974b);
}
.get-quote-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg,#fd005a, #fb974b);
}

/* General styles for the hero title */

/* Responsive Header */
@media (max-width: 992px) {
  .main-nav {
    flex-direction: column;
    text-align: center;
  }

  .nav {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .get-quote-btn {
    margin-top: 10px;
    
  }
}

/* Hero Section Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
    line-height: 1;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-content {
    text-align: center;
  }

  .hero-button .get-quote-btns {
   
    font-size: 1.2rem;
  }
}

/* Small Mobile Screens */
@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
    line-height: 0.8;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-bg-image {
    width: 100%;
    height: auto;
  }

  .hero-button .get-quote-btns {
   
    font-size: 0.8rem;
  }

  .logo-img {
    width: 120px;
  }

  .nav {
    flex-direction: column;
  }
}

.second-services{
  padding: 40px 0 40px 0;
  background-color: #212121;
}

.seconds-services{
  padding: 40px 0 40px 0;
  background-color: black;
}
.content-section {
  padding: 50px 0;
  background-color:#212121;
}

.new-testimon{
  padding: 0px 0 40px 0;
  background-color: #212121;
}
.content-sections {
  padding: 10px 0;
  background-color:#212121;
}
.content-section-1 {
  padding: 1px 0px 80px 0;
  background-color:black;
}

.tag-buttons {
  margin-bottom: 20px;
}
.news-buttons{
  margin-bottom: 20px;
}

.tag-btn {
  background: transparent;
  border: 1px solid #ff6b6b;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  margin-right: 8px;
  font-size: 14px;
}
.new-buttons{
  background: transparent;
  border: 1px solid #ff6b6b;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  margin-right: 8px;
  font-size: 14px;
}

.tag-btn.active {
  background: #ff6b6b;
  border: none;
}
.new-buttons.active{
  background: #ff6b6b;
  border: none;
}


.left-container {
            flex: 1;
            position: sticky;
            top: 10%;
            align-self: flex-start;
            height: auto;
            padding: 20px;
            /* background: white; */
        }
.title {
  font-size: 4.5rem;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
}

.highlight {
  background: linear-gradient(45deg, #fb974b, #fd005a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.description {
  font-size: 1.1rem;
  color: #bbb;
  margin-top: 20px;
}

.team-section {
  margin-top: 30px;
}

.team-avatars {
  display: flex;
  align-items: center;
  margin-right: 30px;
}

.team-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: -10px;
  border: 3px solid #181818;
}

.meet-team-btn {
  background: #ff6b6b;
  border: none;
  padding: 10px 18px;
  border-radius: 30px;
  color: white;
  font-size: 14px;
  margin-left: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.meet-team-btn:hover {
  background: #fd005a;
}

/* .thumb video{
  width: 100%;
  height: 450px;
} */


.thumb {
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

/* Video Styling */
.background-clip {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

@media (max-width: 992px) {
  .col-lg-6 {
      width: 100%;
  }
  .meeting-item {
      margin-bottom: 20px;
  }
  .animation-badge {
      font-size: 12px;
      padding: 4px 8px;
  }
}

/* Small screens (Mobile - Stack in a single column) */
@media (max-width: 768px) {
  .col-lg-8 {
      margin-top: 5%;
      margin-bottom: 5%;
  }
  .col-lg-6 {
      width: 100%;
  }
  .meeting-item {
      margin-bottom: 15px;
      padding: 20px 35px;

  }
  .background-clip {
      border-radius: 5px;
  }
  .animation-badge {
      font-size: 10px;
      padding: 3px 6px;
  }
  .thumb{
    width: 90%;
    
  }
  .left-container .button{
    margin-left: 38%;
  }
}

/* Extra small screens (Phones) */
@media (max-width: 480px) {
  .col-lg-8 {
      margin-top: 3%;
      margin-bottom: 3%;
  }
  .animation-badge {
      font-size: 9px;
      padding: 2px 5px;
  }
}

/* Linear Gradient Overlay */
.thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  z-index: 1;
}

/* Animation Button */
.animation-badge {
  position: absolute;
  top: 50px;
  left: 20px;
  background: black;
  color: white;
  font-size: 14px;
  font-weight: bold;
  padding: 5px 12px;
  border-radius: 15px;
  border: 3px solid white;
  backdrop-filter: blur(5px);
  z-index: 2; /* Ensures it stays above the gradient */
}

/* Minimal Design Text */
.video-text {
  position: absolute;
  bottom: 15px;
  left: 15px;
  font-size: 20px;
  font-weight: bold;
  color: white;
  z-index: 2; /* Ensures it stays above the gradient */
}


/* Right Side Features */
.features {
  margin-top: 25%;
  /* padding: 10%; */
  margin-left: 16%;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 85px;
}

.feature-icon {
  width: 90px;
  height: 60px;
  margin-right: 15px;
  margin-bottom: 20px;
}

.feature-item h4 {
  margin: 0;
  font-size: 1.4rem;
  color: white;
  font-weight: 800;
}

.feature-item p {
  margin: 5px 0 0;
  font-size: 1rem;
  color: #bbb;
}

.descript_image{
  position: relative;
  bottom: 110px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .title {
      font-size: 2.8rem;
  }

  .description {
      font-size: 1rem;
  }

  .team-img {
      width: 40px;
      height: 40px;
  }


  .meet-team-btn {
      font-size: 12px;
      padding: 8px 15px;
  }

  .feature-item h4 {
      font-size: 1.2rem;
  }

  .feature-item p {
      font-size: 0.9rem;
  }
}


@media (min-width: 992px) {
  .col-lg-6 {
      flex: 0 0 auto;
      width: 50%;
  }
}

.title-1 {
  font-size: 3.9rem;
  font-weight: bold;
  line-height: 1.2;
  color: #fff;
}

/* Default styles apply to large screens (desktops) */

/* Large Desktops (1440px and above) */
@media (min-width: 1440px) {
  .container {
    max-width: 1200px;
  }

  .title-1 {
    font-size: 4.5rem;
  }
}

/* Laptops and Tablets (1024px - 1439px) */
@media (max-width: 1439px) {
  .title-1 {
    font-size: 3.5rem;
  }

  .features {
    margin-top: 15%;
  }

  .feature-item {
    margin-bottom: 60px;
  }
}

/* Tablets (768px - 1023px) */
@media (max-width: 1023px) {
  .title-1 {
    font-size: 3rem;
  }

  .features {
    margin-top: 10%;
    margin-left: 5%;
  }

  .feature-item {
    margin-bottom: 40px;
  }

  .team-img {
    width: 45px;
    height: 45px;
  }
  .team-section{
    align-items: center !important;
    justify-content: center !important;
  }

  .tag-btn {
    font-size: 12px;
    padding: 5px 10px;
    margin: auto;
  }
}

/* Mobile Devices (576px - 767px) */
@media (max-width: 767px) {
  .row {
    flex-direction: column;
    text-align: center;
  }

  .col-lg-6 {
    width: 100%;
  }

  .title-1 {
    font-size: 2.5rem;
  }

  .description {
    font-size: 1rem;
  }

  .team-section {
    justify-content: center;
  }

  .team-avatars {
    margin: 0 auto;
    display: inline-block;
    vertical-align: middle;
  }

  .features {
    margin-top: 8%;
    text-align: center;
  }

  .feature-item {
    flex-direction: column;
    align-items: center;
  }

  .feature-icon {
    margin-bottom: 10px;
  }

  .feature-item h4 {
    font-size: 1.2rem;
  }

  .feature-item p {
    font-size: 0.9rem;
  }
}

/* Small Mobile Devices (up to 575px) */
@media (max-width: 575px) {
  .left-container .title-1 {
    font-size: 2rem;
  }
  .left-container .button{
    margin-left: 22%;
  }

  .description {
    font-size: 0.9rem;
  }

  .team-img {
    width: 40px;
    height: 40px;
  }

  .feature-item h4 {
    font-size: 1.1rem;
  }

  .feature-item p {
    font-size: 0.85rem;
  }

  .meet-team-btn {
    font-size: 11px;
    padding: 7px 12px;
  }

  .tag-btn {
    font-size: 10px;
    padding: 4px 8px;
    margin: auto;
  }
}




#greenBackground{
  position: absolute;
  top: -5%;
  left: 0;
  height: 500px;
  width: 650px;
  background-color: #96ff61;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  opacity: 0.1;
}

/* .container{
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 20px 12%;
  margin-top: 50px;
} */

/* service section */
.service_wrapper{
  display: flex;
  flex-direction: column;
  /* gap: 30px; */
  width: 100%;
}

.service_wrapper .content{
  display: flex;
  gap: 10px;
  width: 100%;
}

.service_wrapper .content div{
  width: 100%;

}

.service_wrapper .content .title{
  font-size: 1.6rem;
  text-decoration: uppercase;
  background: linear-gradient(90deg, #96ff61 0% , #006231 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.service_wrapper .content h3{
  font-size: 3.8rem;
  color: #ffff;
  line-height: 4.5rem;
  width: 100%;
}
.service_wrapper .content p{
  width: 90%;
  color: #ddd;
  margin: 10px 0;
}



.service_contaner{
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 60px;
}

.service_contaner .service{
  display: flex;
  flex-direction: column;
  width: 100%;
}

.service_contaner .service .service_Title{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0px;
  border-bottom: 0.2px solid rgba(131,131,131,1);
  transition: 1s;
  position: relative;
}

.service_contaner .service .service_Title img{
  width: 300px;
  height: auto;
  position:absolute;
  top: 50%;
  left: 65%;
  transform: translate(-50%, -50%) rotate(10deg);
  opacity: 0;
}

.image_show{
  opacity: 1 !important;
  filter: blur(5px);
  animation: showImg 0.6s forwards linear;
}

@keyframes showImg{
  100%{
    filter: blur(0px);
    transform: translate(-50%, -50%) rotate(9deg);
  }
}

.service_contaner .service .service_Title h2 {
  font-size: 2.8;
  letter-spacing: 0.6px;
  color: #ffff;
  font-weight: 800;
}

.service_contaner .service .service_Title h2:hover{
  background: linear-gradient(45deg, #fb974b, #fd005a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.service_contaner .service .service_Title span{
  font-size: 1.05rem;
}

.service_contaner .service .service_Title i{
  font-size: 2.3rem;
  color: #fff;
}

.service_contaner .service .service_Title video {
  width: 300px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%) rotate(10deg);
  opacity: 0;
}

.video_show {
  opacity: 1 !important;
  filter: blur(5px);
  animation: showVideo 0.6s forwards linear;
}

@keyframes showVideo {
  100% {
    filter: blur(0px);
    transform: translate(-50%, -50%) rotate(9deg);
  }
}


@keyframes slide{
  0%{
    transform: translateX(0);
  }
  100%{
    transform: translateX(-100%);
  }
}
/* Default styles for large screens (desktops) */
@media (min-width: 1500px) {
  .container {
    max-width: 1400px;
  }

  .service_contaner .service .service_Title img {
    width: 300px;
  }
}

/* Large Desktops and Laptops (1200px - 1499px) */
@media (max-width: 1499px) {

  .service_contaner .service .service_Title h2 {
    font-size: 2.5rem;
  }
}

/* Laptops and Large Tablets (1024px - 1199px) */
@media (max-width: 1199px) {
  .service_wrapper .content {
    flex-direction: column;
  }

  .service_contaner .service .service_Title h2 {
    font-size: 2.2rem;
  }

  .service_contaner .service .service_Title img {
    left: 75%;
    width: 220px;
  }
}

/* Tablets (768px - 1023px) */
@media (max-width: 1023px) {
  .service_contaner .service .service_Title img {
    width: 210px;
  }

  .service_contaner .service .service_Title h2 {
    font-size: 2rem;
  }

  .service_wrapper .content h3 {
    font-size: 3rem;
    line-height: 3.8rem;
  }
  .content-section-1 .slider_page{
    align-items: center;
  }

  .service_contaner .service .service_Title {
    padding: 30px 0px;
  }
}

/* Mobile Devices (576px - 767px) */
@media (max-width: 767px) {
  .service_wrapper {
    text-align: center;
  }

  .service_wrapper .content h3 {
    font-size: 2.5rem;
    line-height: 3rem;
  }

  .service_contaner .service .service_Title h2 {
    font-size: 1.8rem;
  }

  .service_contaner .service .service_Title img {
    width: 180px;
    left: 70%;
  }

  .service_contaner {
    margin-top: 40px;
  }

  .service_contaner .title-1{
    margin-top: 20px;
  }

  .content-section-1 .slider_page{
    margin-top: 30px;
  }

  .tag-btn {
    font-size: 12px;
    padding: 5px 10px;
  }
}

/* Small Mobile Devices (up to 575px) */
@media (max-width: 575px) {
  .service_wrapper .content h3 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .service_contaner .service .service_Title {
    padding: 20px 0px;
  }

  .service_contaner .service .service_Title h2 {
    font-size: 1.3rem;
  }

  .service_contaner .service .service_Title img {
    width: 140px;
    left: 65%;
  }

  .service_contaner .service .service_Title i {
    font-size: 2rem;
  }

  .service_wrapper .tag-buttons {
    margin-bottom: 30px;
  }

  .tag-btn {
    font-size: 10px;
    padding: 4px 8px;
  }
}

/* Extra Small Devices (up to 400px) */
@media (max-width: 320px) {
  .service_wrapper .content h3 {
    font-size: 1.8rem;
  }

  .service_contaner .service .service_Title h2 {
    font-size: 1.0rem;
  }

  .service_contaner .service .service_Title img {
    width: 120px;
    left: 60%;
  }

  .service_contaner .service .service_Title i {
    font-size: 1.8rem;
  }
  .content-section-1{
    padding: 1px 10px 80px 10px;
  }
}



.button span::after {
  content: '→';
  font-size: 14px;
  transition: 0.3s;
  margin-right: 2px;
}
.button {
  display: flex;
  align-items: center;
  justify-content: right;
  border-radius: 20px;
  border: 2px solid transparent;
  width: 180px;
  height: 50px;
  position: relative;
  overflow: hidden;
  font-weight: bold;
  cursor: pointer;
  padding: 5px;
  color: #fff;
}


.circle {
  width: 50px;
  height: 44px;
  background: linear-gradient(45deg,#fd005a, #fb974b);
  border-radius: 50%;
  position: absolute;
  right: 0; /* Circle starts from the right */
  transition: all 0.5s ease-in-out;
  z-index: 0;
  top: 2px;
}

.button span {
  position: relative;
  z-index: 1;
  margin-right: 19px; /* Adjusted to avoid overlap with circle */
  transition: color 0.5s ease-in-out;
}

.button:hover .circle {
  width: 100%;
  border-radius: 20px;
  right: 0; /* Expands fully to the left */
}

.button:hover span {
  color: white;
}

/* 🔹 Ensure margin is auto for all screen sizes */
@media (max-width: 1024px) {
    .navabr .button {
      display: none;
  }
}

@media (max-width: 768px) {
   .navbar .button {
      width: 160px; /* Slightly smaller button for tablets */
      height: 45px;
      margin-left: 50px;
      display: none;
  }
  .dropdown_menu .button{
    margin-left: 40px; 
  }
}

@media (max-width: 900px) {
  .cursor-dot,
  .cursor-outline {
      display: none;
  }
}

@media (max-width: 576px) {
  .navbar .button {
      width: 150px; /* Smaller button for phones */
      height: 42px;
      margin: auto;
      display: none;
  }
  .navbar .button span {
    font-size: 12px;
  }
  .dropdown_menu .button{
    margin-left: 40px; 
  }
}

/* 🔹 Adjust Circle Animation on Hover */
.button:hover .circle {
  width: 100%;
  border-radius: 20px;
  right: 0;
}

.button:hover span {
  color: white;
}
/* 📌 Default Stats Section Styles */
.stats-section {
  background-image: url('../images/02.jpg'); 
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0 0 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 200px;
}
.stats-section-1 {
  background-image: url('../images/photographer-capturing-photos-world-photography-day-war-zone-conflict-area.jpg'); 
  background-size: cover;
  background-position: center;
  color: white;
  padding: 80px 0 0 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 200px;
}

/* 📌 Blur Container */
.blur-container {
  background: rgba(255, 255, 255, 0);
  padding: 50px 0;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
}

.stats-row{
  width: 300px;
}

@media (max-width:1200px){
  .stats-row{
    width: 210px;
  }
}


/* 📌 Stats Merged Box */
.stats-merged {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0px 40px;
  border-radius: 30px;
  gap: 10px; 
  flex-wrap: wrap;
}

/* 📌 Stats Number */
.stats-box {
  font-size: 130px;
  color: white;
}

/* 📌 Badge */
.badge-custom {
  background: linear-gradient(to right, #ff416c, #ff4b2b);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: bold;
  position: absolute;
}

/* 🔹 Responsive Design */
@media (max-width: 1200px) {
  .stats-box {
    font-size: 80px;
  }
  .stats-section {
    gap: 150px;
  }
}

@media (max-width: 992px) {
  .stats-box {
    font-size: 80px;
  }
  .stats-merged {
    padding: 0px 30px;
  }
  .badge-custom{
    font-size: 10px;
  }
  .stats-row{
    width: 190px;
  }
}



@media (max-width: 320px) {
  .badge-custom{
    font-size: 8px;
  }
  .stats-box {
    font-size: 60px;
  }
  .stats-merged {
    padding: 0px 30px;
  }
  .stats-row{
    width: 155px;
  }
}


.hr{

  height: 1px;
  width: 100%;
  background-color: #FFFFF7;
}


.blog-section {
  max-width: 1200px;
  margin: 10px auto;
  padding: 20px;
}

/* Title */
.blog-title {
  font-size: 40px;
  font-weight: bold;
}

.blog-title span {
  color: #ff4b2b; /* Highlighted 'news' */
}

/* Blog Card */
.blog-card {
  /* background: #1e1e1e; */
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
  position: relative;
}

.blog-card:hover {
  transform: scale(1.05);
}

.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.blog-content {
  padding: 15px;
}

.badge-customs {
  display: inline-block;
  background: #ff4b2b;
  color: white;
  padding: 5px 15px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 10px;
  position: absolute;
  top: 4%;
  left: 4%;
}

.blog-title-small {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

/* Author Info */
.author-info {
  display: flex;
  align-items: center;
  font-size: 10px;
  color: #918f8f;
}

.author-info img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 10px;
}

/* View More Button */
.view-more {
  text-align: right;
  margin-top: 20px;
}

.view-more a {
  color: #ff4b2b;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.view-more a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-title {
      font-size: 30px;
      text-align: center;
  }

  .view-more {
      text-align: center;
  }

  .row {
      text-align: center;
  }
}



.small_topics{
  font-size: 14px;
  color: #999999;
  margin-bottom: 10px;
}
.address_topic{
  font-size: 18px;
  color: #fff;
}

.contact-info {
  font-size: 1.1rem;
  color: white;
}

.first-footer{
  margin: 30px 0 50px 0;
}

.contact-info a {
  color: white;
  text-decoration: underline;
  text-align: start;
}

hr {
  border: none;
  height: 1px;
  background-color: #ffffff; /* White color */
  margin: 20px 0; /* Spacing above and below */
  /* opacity: 0.5; */
}

.footer-container {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 50px;
  margin-bottom: 40px;
}

.footer-column {
  max-width: 300px;
}

.footer-column h4 {
  color: #999999;
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-column ul li a:hover {
  color: #ff6600;
}

.social-media .social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-btn {
  text-decoration: none;
  color: white;
  font-size: 14px;
  border: 1px solid white;
  padding: 8px 14px;
  border-radius: 20px;
  transition: 0.3s;
}

.social-btn:hover {
  background: linear-gradient(45deg, #fd005a, #fb974b);
  color: white;
}



.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding-bottom: 20px;
}

.footer-bottom .brand-name {
  color: #ff5500; /* Highlighted color for brand name */
  font-weight: bold;
}

.footer-bottom .footer-links a {
  color: #888;
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s ease;
}
.footer-bottom .footer-links{
  position: absolute;
  justify-content: center;
  align-items: center;
}

.footer-bottom .footer-links a:hover {
  color: #fff; /* White color on hover */
}

.footer-bottom .footer-links span {
  color: #666; /* Dot separator color */
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between; /* Pushes content to both ends */
  align-items: center; /* Align items vertically */
  width: 100%;
}

.footer-bottom p {
  margin: 0;
  color: #888;
}

.footer-links {
  display: flex;
  gap: 15px; /* Adds space between links */
}

.footer-links a {
  color: #888;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff; /* Changes to white on hover */
}

/* Mobile Screens (max-width: 768px) */
@media (max-width: 768px) {
  .d-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .side-topics {
    text-align: center;
    margin-top: 20px;
  }

  .footer-container {
    /* flex-direction: column; */
    align-items: center;
    text-align: center;
    align-items: start;
  }

  .footer-column {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .social-media .social-buttons {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}

/* Tablet Screens (max-width: 1024px) */
@media (max-width: 1024px) {
  .footer-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-column {
    max-width: 50%;
    text-align: center;
  }

  .social-media .social-buttons {
    justify-content: center;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* Extra Small Screens (max-width: 480px) */
@media (max-width: 800px) {
  .title-1 {
    font-size: 24px;
  }

  .first-footer .side-topics .small_topics{
    background: linear-gradient(45deg, #fb974b, #fd005a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
  }

  .address_topic {
    font-size: 16px;
  }

  .footer-column h4 {
    font-size: 16px;
    background: linear-gradient(45deg, #fb974b, #fd005a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
  }

  .footer-column ul li a {
    font-size: 13px;
  }

  .social-btn {
    font-size: 12px;
    padding: 6px 10px;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }
}




/* 📌 Default Slider Styles */
.slider_page {
  margin: 35px auto 0 auto;
  width: 90%;
  height: 450px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* 📌 Slide Box */
.slide {
  position: relative;
  width: 25%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.648);
  transition: all ease-in-out 0.5s;
  cursor: pointer;
}

/* 📌 Images */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: all ease-in-out 0.5s;
  display: block;
}

/* 📌 Gradient Overlay */
.slide::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Adjust blur height */
  background: linear-gradient(to top, rgba(0, 0, 0, 2.0) 2%, transparent 110%);

  pointer-events: none;
}

/* 📌 Hover Effect */
.slide:hover {
  width: 100%;
}

/* 📌 Caption */
.caption {
  position: absolute;
  bottom: 20%;
  font-weight: 700;
  width: 80%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 18px;
  text-align: left;
  display: none; /* Initially hidden */
}

.sub-content{
  position: absolute;
  margin-top: 30px;
}
.subtask{
  font-size: 16px;
  color: #fff
}
.subtask-1{
  font-size: 14px;
  color: #777877
}


.slide:hover .caption {
  display: block; /* Show when hovered */
}

/* 🔹 Responsive Design */
@media (max-width: 1200px) {
  .slider_page {
    height: 400px;
  }
  .slide {
    width: 30%;
  }
  .caption {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .slider_page {
    flex-wrap: wrap;
    height: auto;
  }
  .slide {
    width: 45%;
    height: 350px;
  }
  .caption {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .slider_page {
    flex-direction: column;
    align-items: center;
  }
  .slide {
    width: 90%;
    height: 300px;
  }
  .caption {
    font-size: 14px;
    bottom: 10%;
  }
}

@media (max-width: 576px) {
  .slider_page {
    width: 100%;
  }
  .slide {
    width: 100%;
    height: 250px;
  }
  .caption {
    font-size: 12px;
    bottom: 35%;
  }
}

@media (max-width: 400px) {
  .slide {
    height: 220px;
  }
  .caption {
    font-size: 11px;
    padding: 4px 8px;
  }
}

.highlight {
  color: #ff6a00;
}

.description {
  font-size: 1.05rem;
  color: #aaa;
  margin-bottom: 20px;
  font-weight: 600;
}

.awards-table {
  display: flex;
  flex-direction: column;
  /* border-top: 2px solid #333; */
}

@media (max-width: 768px) {
  .award-table {
      font-size: 14px; /* Slightly smaller font size */
  }

  .award-image img {
      width: 40px; /* Smaller image size for tablets */
  }

  .award-table th, .award-table td {
      padding: 8px; /* Reduce padding */
  }
}

/* Media Query for Mobile Phones */
@media (max-width: 500px) {
  .award-table {
      font-size: 12px; /* Smaller font size for mobile */
  }

  .award-image img {
      width: 30px; /* Smaller image size for mobile */
  }

  .award-table th, .award-table td {
      padding: 6px; /* Further reduce padding */
  }

  .award-table th {
      display: none; /* Hide headers on mobile for a cleaner look */
  }

  .award-row {
      display: block; /* Stack rows vertically */
      margin-bottom: 10px; /* Space between rows */
      border: 1px solid #ddd; /* Add border around each row */
      border-radius: 5px; /* Rounded corners */
      padding: 10px; /* Padding for each row */
  }

  .award-image-cell {
      display: flex; /* Use flexbox for alignment */
      justify-content: center; /* Center the image */
      margin-bottom: 5px; /* Space below the image */
  }

  .award-organization-cell,
  .award-title-cell,
  .award-date-cell {
      display: block; /* Stack text vertically */
      margin: 5px 0; /* Space between text elements */
  }
}

/* .award-row {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid #222;
  transition: background 0.3s;
} */

/* .award-row:hover {
  background: rgba(255, 255, 255, 0.1);
} */

.featured {
  background: rgba(255, 255, 255, 0.2);
}

.source {
  color: #ff6a00;
  font-weight: 700;
  text-transform: uppercase;
}
/* 
.award-row .title {
  font-weight: bold;
  flex-grow: 1;
  text-align: left;
  margin-left: 15px;
  font-size: 16px;
}

.date {
  color: #888;
}

.text-head{
  color: #787878;
}

.text-header{
  color:#787878 ;
}

.text-content{
  font-size: 1.555556rem;
}

.award-image {
  position: relative;
  width: 34%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}

.award-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.award-img.active {
  opacity: 1;
}
 */

/* service_navbar */

header {
  height: 120vh;
  background-color: #000;
  background-image: url(../images/header.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 0 2rem;
}

.navbar{
  width: 100%;
  height: 60px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-center;
}

.navbar .logo a{
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar .links{
  display: flex;
  gap: 1rem;
}

.links li a {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 50px; /* Default rounded shape */
  transition: background 0.3s ease, color 0.3s ease;
  text-decoration: none;
  color: white;
}

.links li a:hover {
  background: white;
  color: black;
  border-radius: 30%;
  padding: 10px;
}

.navbar .toggle_btn{
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: none;

}

.action_btn{
  background-color: orange;
  color: #fff;
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
  cursor: pointer;
  transition: scale 0.2 ease;
}

.action_btn:hover{
  scale: 1.05;
  color: #fff;
}

.action_btn:active{
  scale: 0.95;
}
.dropdown_menu {
  display: none;
  position: absolute;
  right: 2rem;
  top: 60px;
  height: 0;
  width: 300px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 10px;
  overflow: hidden;
  transition: height 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Corrected selector */
.dropdown_menu.open {
  height: 350px;
  display: block;
  margin-top: 30px;
}


.dropdown_menu li {
  padding: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown_menu .action_btn {
  width: 100%;
  display: flex;
  justify-content: center;
}


/* section#hero{
  height: calc(100vh -60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  text-align: center;
  color: #fff;
}

#hero h1{
  font-size: 3rem;
  margin-bottom: 1rem;
} */


@media(max-width:992px){
  .navbar .links,
  .navbar .action_btn{
    display: none;
  }
  .navbar .toggle_btn{
    display: block;
  }
  .dropdown_menu{
    display: none;
  }
}

@media(max-width:576px){
  .dropdown_menu{
    left: 2rem;
    width: unset;
    z-index: 100;
  }
}


.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 3rem;
}

.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

.hero .buttons {
  margin-top: 20px;
}

.hero .btn {
  display: inline-block;
  padding: 10px 20px;
  margin: 10px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: bold;
}

.hero .btn.primary {
  background: #ff6600;
  color: white;
}

.hero .btn.secondary {
  background: transparent;
  color: #ff6600;
  border: 2px solid #ff6600;
}

header#service_header{
  height: 90vh;
  background-color: #000;
  background-image: url(../images/service_header.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 0 2rem;
}

header#service_headers{
  height: 90vh;
  background-color: #000;
  background-image: url(../images/contact-banner.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 0 2rem;
}


.banner-section {
  position: relative;
  width: 100%;
  height: 90vh;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.dark-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.5); Dark overlay */
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 100%;
}

.small-heading {
  font-size: 1.0rem;
  letter-spacing: 1px;
  opacity: 0.8;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  color: white;
  text-transform: uppercase;
}

.main-heading {
  font-size: 100px;
  font-weight: bold;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #fb974b, #fd005a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navigation-links {
  font-size: 20px;
  opacity: 0.9;
}

.navigation-links a {
  background: linear-gradient(45deg, #fb974b, #fd005a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  font-weight: bold;
}

.navigation-links span {
  color: #ccc; /* Light gray for "Services 1" */
}

/* .navigation-links::before {
  content: ">";
  color: #ccc; 
  margin: 0 5px;
} */
/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .main-heading {
      font-size: 36px;
  }
  .small-heading {
      font-size: 12px;
  }
  .navigation-links {
      font-size: 12px;
  }
}

@media (max-width: 480px) {
  .main-heading {
      font-size: 52px;
  }
  .small-heading {
      font-size: 10px;
  }
  .navigation-links {
      font-size: 12px;
  }
}

.promo-section {
  width: 100%;
  padding: 70px 8%;
}

.promo-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-block {
  max-width: 600px;
}

.action-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.cta-btn {
  background: none;
  border: 2px solid #ff5733;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
}

.cta-btn:hover {
  background: #ff5733;
  color: #000;
}

.main-title {
  font-size: 62px;
  font-weight: bold;
  margin-bottom: 20px;
  color: white;
}

.accent-word {
  color: #ff5733;
}

.gradient-highlight {
  background: linear-gradient(90deg, #ff5733, #ff0080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraph */
.info-text {
  font-size: 16px;
  line-height: 1.6;
  opacity: 0.8;
  color: #757575;
}

/* Image */
.image-wrapper img {
  max-width: 200px;
}

/* 🌐 Responsive Design */
@media (max-width: 1024px) {
  .promo-container {
      flex-direction: column;
      text-align: center;
  }

  .image-wrapper img {
      margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .main-title {
      font-size: 36px;
  }

  .info-text {
      font-size: 14px;
  }

  .cta-btn {
      font-size: 12px;
      padding: 6px 12px;
  }
}

@media (max-width: 480px) {
  .main-title {
      font-size: 28px;
  }

  .action-buttons {
      flex-direction: column;
      align-items: center;
  }

  .cta-btn {
      width: 100%;
  }
}


/* Scrolling Wrapper */
.scrolling-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
}

/* Common Scrolling Content */
.scrolling-content {
  display: flex;
  width: 200%;
  white-space: nowrap;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
  gap: 50px;
  align-items: center;
}

/* Gradient Background */
.scrolling-content p {
  display: flex;
  gap: 20px;
  background: linear-gradient(90deg, #ff7e29, #ff0080);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding: 10px 0;
}

/* Left to Right Scroll */
.left-scroll {
  animation: scroll-left 15s linear infinite;
}

/* Right to Left Scroll */
.right-scroll {
  animation: scroll-right 15s linear infinite;
}

/* Left Scroll Animation */
@keyframes scroll-left {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

/* Right Scroll Animation */
@keyframes scroll-right {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .scrolling-content {
      font-size: 16px;
  }
}


.testmo{
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  justify-content: center;
  overflow: hidden;
  padding: 10px;
  background-color: #282828;
}

.testmo-section{
  color: #fff;
  border-radius: 50px 10px 50px 10px;
  margin: 20px auto;
  padding: 50px 80px;
  max-width: 768px;
  position: relative;
  background-image: linear-gradient(#ff148b, #fd2424);
  
}

.fa-quote{
  position: absolute;
  font-size: 30px;
  top: 70px;
  color: rgba(255, 255, 255, 0.3);
}

.fa-quote-right{
  right: 40px;
}


.fa-quote-left{
  left: 40px;
}

/* 
.content{
  line-height: 28px;
  
  color: white;
}
.person{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px;
}
.person .pic{
  border-radius: 50%;
  height: 76px;
  width: 76px;
  object-fit: cover;
}

.person .user-details{
  margin-left:12px ;
}

.person .username{
  margin: 0;
}
.person .role{
  font-weight: normal;
  margin: 12px 0;
} */

.divider{
  height: 5px;
  width: 100%;
  background-color: #fff;
  transform-origin: left;
  animation: rise 10s linear infinite;
}

@keyframes rise{
  0%{
    transform: scaleX(0);
  }
}

@media(max-width: 768px){
  .testmo-section{
    padding: 20px 30px;
  }
  .fa-quote{
    display: none;
  }
}

/* *{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background: #f2f2f2;
} */
@keyframes slide{
  from{
      transform: translateX(0);
  }
  to{
      transform: translateX(-100%);
  }
}

.logos{
  overflow: hidden;
  /* padding: 60px 0px; */
  background-color: #fac813;
  white-space:nowrap;
  padding-bottom: .8rem;
  position: relative;
  transform: rotate(3deg);
}

.logos:hover .logos-slide{
  animation-play-state: paused;
}
.logos-slide{
  display: inline-block;
  height: 55px;
  padding: 1rem ;
  padding-bottom: 0.8rem;
  animation: 25s slide infinite linear;
}
.logos-slide span{
  font-size:1.3rem;
  /* padding-top:12rem ; */
  font-weight: 600;
  color: #000;
}
.logos-slide i{
  height: 30px;
  width: 40px;
  margin: 0 10px;
  margin-bottom: -10px;
  /* background-color: aqua; */
}

.logos-1{
  overflow: hidden;
  /* padding: 60px 0px; */
  background-color: #fac813;
  white-space:nowrap;
  padding-bottom: .8rem;
  position: relative;
  transform: rotate(3deg);
}


.awards-section{
  padding: 50px 0 50px 0;
  background-color: #212121;
}
.awards-section-1{
  padding: 10px 0 50px 0;
  background-color: black;
}

.award-container {
  width: 85%;

}
.award-table {
  width: 100%;
  border-collapse: collapse;
}
.award-table th, .award-table td {
  color: #999999;
  text-align: left;
  border-bottom: 1px solid white;
}
.award-title-header, .award-date-header {
  text-transform: uppercase;
  font-weight: bold;
}
.award-row:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}
.award-image img {
  width: 120px;
  height: 120px;
  visibility: hidden;
  
}
.award-row:hover .award-image img {
  visibility: visible;
}
.organization-info {
  font-weight: bold;
}

.organization-info:hover{
  color: white;
}

.award-date-cell:hover{
  color: white;
}
.award-image-cell {
  border-bottom: none !important;
  background-color: transparent !important;
}
.empty-image{
  border-bottom: none !important;
}
.award-title-cell{
  font-size: 32px;
  color: white !important;
}
.award-organization-cell{
  padding-right: 50px;
}



/* .scrolling-section{
  display: flex;
  align-items: center;
  height: 100vh;
  overflow: hidden;
} */
.scroll {
  white-space: nowrap;
  /* margin: 0 2em; */
  overflow: hidden;
  position: relative;
  
}

.scroll div {
  display: flex;
  gap: 2em;
  padding: 20px 0;
  position: relative;
}

/* Styling the text */
.scroll p {
  font-size: 2em;
  color: white;
  font-weight: bold;
  padding: 10px;
  margin: 0;
}

/* RightToLeft Animation (Black Background) */
.RightToLeft {
  animation: RightToLeft 30s infinite linear;
  background-color: black;
  min-width: 200vw;
  position: absolute;
  left: 0;
  top: 0;
  padding: 20px 0;
  display: flex;
  align-items: center;
}

/* LeftToRight Animation (Gradient Background) */
.LeftToRight {
  animation: LeftToRight 30s infinite linear;
  background: linear-gradient(45deg, #fb974b, #fd005a);
  min-width: 200vw;
  position: absolute;
  left: 0;
  top: 100%;
  /* padding: 20px 0; */
  display: flex;
  align-items: center;
 
}
@media (max-width: 480px) {
  .scroll p {
    font-size: 1.0em; /* Reduce font size further */
    padding: 5px; /* Adjust padding */
  }

  .RightToLeft,
  .LeftToRight {
    min-width: 400vw; /* Extend width to keep animation smooth */
  }
}


.love-service{
  width: 50% !important;
  margin-right: 10%;
}

.love-service img{
   width: 150%;
   overflow: hidden;
}

@media (max-width:768px) {
  .love-service {
    width: 100% !important;
    margin-right: 0px;
  }
  .love-service img{
    width: 25%;
    bottom: 20px;
  }
}


/* Animations */
@keyframes RightToLeft {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes LeftToRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0%);
  }
}
.tug-buttons{
  margin-left: 8%;
  margin-bottom: 8%;
}

.test-mo {
  
  place-items: start;
  min-height: 100vh;
  min-height: 100svh;
  font-family: "Poppins", sans-serif;
  color: #26273e;
  padding-block: min(20vh, 3rem);
  background-color: #212121;

  @include mQ(61.25rem) {
    place-items: center;
  }
}


.test-momo {
  display: flex;
      grid-template-columns: repeat(12, 1fr);
      width: calc(min(90rem, 85%));
      margin: 0 auto;
      justify-content: space-evenly;
      gap: 10%;

  @include mQ(61.25rem) {
    column-gap: 5rem;
  }

  h1 {
    grid-column: span 12;
    text-transform: capitalize;
    font-size: 2.4rem;
    margin-bottom: 2rem;
    font-weight: 700;

    @include mQ(61.25rem) {
      font-size: 4rem;
      margin-bottom: 4rem;
    }
  }

  .cards {
    grid-column: span 12;
    display: grid;
    gap: 2rem;
    width: 50%;

    @include mQ(61.25rem) {
      grid-column: span 5;
    }

    .card {
      cursor: pointer;
      padding: 2em;
      border-radius: 1rem;
      display: grid;
      grid-template-columns: auto 1fr;
      column-gap: 2.188rem;
      align-items: center;
      transition: 0.3s;
      position: relative;
      border: 0.094rem solid transparent;

      img {
        display: block;
        width: 3.35rem;
        height: 3.35rem;
        border-radius: 50%;
        filter: grayscale(1);
        transition: 0.5s;
      }

      > div {
        h3 {
          text-transform: capitalize;
          font-size: 1.025rem;
        }

        p {
          text-transform: capitalize;
          color: #767676;
          font-size: 0.9rem;
        }
      }
    }
    .card.active {
      background: #fff;
      border: 0.094rem solid #0f172a14;

      .gradient {
        background-image: linear-gradient(
          to right,
          #4755690a,
          #9d0cb28a,
          #4343c899,
          #4755690a
        );
        width: 50%;
        height: 0.094rem;
        position: absolute;
        content: "";
        bottom: -0.063rem;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: 0px 0.125rem 0.75rem #4343c84d;
      }
    }
    .card.active img {
      filter: grayscale(0);
    }
  }

  .content {
    grid-column: span 12;
    position: relative;
    width: 100%;
    overflow: inherit;
    margin-top: 2rem;

    @include mQ(61.25rem) {
      grid-column: span 7;
      margin-top: 0;
      height: auto;
    }

    .contentBox {
      position: absolute;
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: start;

      @include mQ(61.25rem) {
        align-items: center;
      }

      .text {
        padding-bottom: 2rem;

        @include mQ(61.25rem) {
          padding-bottom: 0;
        }
      }

      h2 {
        transition: 0.5s;
        opacity: 0;
        color: white;
      }

      p {
        transition: 0.5s;
        opacity: 0;
        margin-top: 1.25rem;
        color: white;
        font-size: large;
      }

      span {
        display: inline-block;
        transition: 0.5s;
        opacity: 0;
        margin-top: 0.625rem;

        svg {
          width: 1.25rem;
          color: #eca633;
        }
      }
    }

    .contentBox.active h2 {
      opacity: 1;
      transition-delay: 0.5s;
    }
    .contentBox.active span {
      opacity: 1;
      transition-delay: 0.7s;
    }
    .contentBox.active p {
      opacity: 1;
      transition-delay: 0.9s;
    }
  }
}

.test-mo::-webkit-scrollbar {
  width: 0.8em;
}

.test-mo::-webkit-scrollbar-track {
  box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.3);
}

.test-mo::-webkit-scrollbar-thumb {
  background-color: #3f3f3f;
}


@media (max-width: 768px) {
  .container {
    /* flex-direction: column; */
    align-items: start;
  }

  .card {
    width: 90%;
  }

  .contentBox {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .card {
    width: 100%;
    font-size: 16px;
    height: 120px;
  }

  .contentBox {
    font-size: 12px;
    padding: 10px;
  }
}


header#about_header{
  height: 90vh;
  /* background-color: #000; */
  background-image: url(../images/about_header.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 0 2rem;
}
header#project_header{
  height: 90vh;
  /* background-color: #000; */
  background-image: url(../images/project-banner.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 0 2rem;
}

/* General Section Styling */
.second-services {
  padding: 50px 0px;
  background-color: #1a1a1a;
  color: white;
  text-align: left;
}

/* Tag Button */
.tag-buttons {
    margin-bottom: 20px;
}

.tag-btn {
    background: none;
    border: 2px solid #ff4d4d;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tag-btn:hover {
    background: #ff4d4d;
    color: black;
}


/* Experience Section */
.experience-section {
    display: flex;
    align-items: end;
    justify-content: end;
    gap: 20px;
    max-width: 1200px;
    position: relative;
}

.about_button{
  position: absolute;
  bottom: -50px;
  right: 28%;
}

/* Left Experience Number */
.experience-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.experience-number {
    font-size: 120px;
    font-weight: bold;
    background: linear-gradient(45deg, #fb974b, #fd005a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plus-sign {
    font-size: 120px;
    color: red;
}

.experience-tag {
  writing-mode: sideways-lr;
  background-color: transparent;
  color: white;
  padding: 15px 13px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 30px;
  border: 2px solid;
}

/* Right Experience Text */
.experience-text {
    max-width: 500px;
    font-size: 16px;
    line-height: 1.6;
    color: #918f8f;
}

/* Explore Link */
.explore-link {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    margin-top: 10px;
}

.explore-link:hover .arrow {
    transform: translateX(5px);
}

.arrow {
    transition: transform 0.3s ease;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .title-1 {
        font-size: 30px;
        margin-top: 20px;
        text-align: center;
    }
    .service_contaner .title-1 {
      font-size: 30px;
      margin-top: 25px;
      text-align: center;
  }

    .experience-section {
        flex-direction: column;
        text-align: center;
    }

    .experience-content {
        /* flex-direction: column; */
        text-align: center;
        margin-right: 50px;
    }

    .experience-number span{
      font-size: 60px;
    }

    .about_button{
      margin-top: 30px;
    }
    .experience-number {
        font-size: 60px;
    }
    .image-container img{
      margin-top: 30px;
    }

    .experience-text {
        max-width: 100%;
    }
}


.image-container {
  margin-top: 10%;
  display: flex;
  justify-content: center;
  margin-bottom: 10%;
}

.image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* General Container Styling */
.features-container {
  padding: 50px 20px;
  background-color: #1a1a1a;
  color: white;
  text-align: center;
}

/* Feature Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

/* Feature Card */
.feature-card {
  padding: 30px;
  border-radius: 12px;
  text-align: left;
  transition: transform 0.3s ease-in-out;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 50px;
}

.feature-card p {
  font-size: 14px;
  color: #ddd;
  margin-top: 10px;
  font-weight: 500;
}

.feature-card .para{
  font-size: 14px;
  color: #3f3f3f;
  margin-top: 10px;
  font-weight: 500;
}
/* Card Background Variants */
.light {
  background: #ffffff;
  color: black;
}

.gradient {
  background: linear-gradient(to bottom right,#fb974b, #fd005a);
  color: white;
}

.dark {
  background: #000;
}

/* Feature Image */
.feature-img {
  width: 150px;
  height: 150px;
  /* margin: auto; */
  overflow: hidden;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Shape Variants */
.shape-circle {
  border-radius: 50%;
}

.shape-diamond {
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.shape-hexagon {
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
}

/* Hover Effect */
.feature-card:hover {
  transform: translateY(-5px);
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .features-grid {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .features-grid {
      grid-template-columns: 1fr;
  }
}



/* Crew Section Container */
.crew-section {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  /* background-color: #1a1a1a; */
  padding: 60px 90px;
  color: white;
}

/* Crew Intro */
.crew-intro {
  
  max-width: 100%;
}

.crew-description {
  font-size: 18px;
  line-height: 1.6;
  color: #ccc;
}

.crew-intro .button {
  display: inline-flex;
  align-items: center;
  color: white;
  font-weight: bold;
  text-decoration: none;
  margin-top: 20px;
  position: relative;
}

.crew-intro .button .crew-intro .circle {
  width: 12px;
  height: 12px;
  background-color: red;
  border-radius: 50%;
  margin-left: 10px;
}

.crew-button:hover .crew-circle  {
  width: 100%;
  border-radius: 20px;
  right: 0;
}


/* Crew Grid */
.crew-grid {
  display: flex;
    gap: 20px;
    flex: 1;
    justify-content: space-evenly;
    max-width: 100%;
    flex-wrap: wrap;

}

.crew-intro .button{
  /* display: flex; */
  align-items: center;
  justify-content: left;
  border-radius: 20px;
  border: 2px solid transparent;
  width: 180px;
  height: 50px;
  position: relative;
  overflow: hidden;
  font-weight: bold;
  cursor: pointer;
  padding: 5px;
  color: #fff;
}


.crew-intro .circle{
  width: 50px;
  height: 44px;
  background: linear-gradient(45deg,#fd005a, #fb974b);
  border-radius: 50%;
  position: absolute;
  right: 30px; /* Circle starts from the right */
  transition: all 0.5s ease-in-out;
  z-index: 0;
  top: 2px;
}

/* Crew Cards */
.crew-card {
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  max-width: 350px;
}

.crew-card img {
  width: 100%;
  height: 390px;
  border-radius: 8px;
}

.crew-name {
  font-size: 24px;
  font-weight: bold;
  margin-top: 15px;
}

.crew-role {
  font-size: 16px;
  color: #ccc;
}

.second-services .tags-buttu{
  margin-left: 5.5%;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .crew-section {
      /* flex-direction: column; */
      text-align: center;
  }

  .crew-intro {
      max-width: 100%;
  }

  .crew-grid {
      justify-content: center;
      max-width: 100%;
      margin-top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .crew-grid {
      flex-direction: column;
      align-items: center;
  }

  .crew-section {
    /* flex-direction: column; */
    text-align: center;
    padding: 20px 2px;
}

  .crew-card {
      max-width: 100%;
  }
}


.services-cards-section{
  display: flex;
  flex-direction: row
  ;
  flex-wrap: wrap;
}
.services-cards-section .services-card{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 2px solid gray;
  border-left: none;
  align-items: center;
  width: 290px;
  height: 400px;
  padding: 1rem;
}
.services-cards-section .services-card:last-child{
  border-right: none;
}
.services-card .card-numbers{
  display: flex;
  flex-direction: column;
}
.services-card .card-numbers h1{
  font-size: 80px;
  font-weight: 700;
}
.services-card .card-numbers h6{
  font-size: 15px;
  font-weight: 700;
}
.services-card .card-numbers h1 sup{
  font-size: 60px;
  font-weight: 500;
  color: #999999;
}
.services-card p{
  color: #999999;
}




.service-details {
  padding-top: 100px;
  padding-bottom: 170px;
  background-color: #212121;
}

.service-details__content p {
  margin: 0;
  color: #757575;
  font-size: 19px;
  line-height: 28px;
}

.service-details__image {
  margin-bottom: 50px;
}
.service-details__video{
  margin-bottom: 50px;
}

.service-details__video>video{
  width: 100%;
  border-radius: 10px;
}

.about-video {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px; /* Adjust as needed */
}


.service-details__image>img {
  width: 100%;
  border-radius: 10px;
}

.service-details__content h3 {
  margin: 0;
  margin-bottom: 25px;
  font-size: 44px;
  font-weight: 600;
  color: white;
}

.service-details__content h2{
  color: white;
}

.service-details__content img {
  border-radius: 10px;
  max-width: 100%;
}

.service-details__main p {
  margin: 0;
}

.service-details__main p+p {
  margin-top: 35px;
}

.service-details__content img {
  border-radius: 10px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.service-details__list {
  margin-top: 25px;
}

.service-details__list li {
  position: relative;
  padding-left: 35px;
}

.service-details__list li i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  font-size: 19px;
  background-image: linear-gradient(-45deg, #dc88ff 0%, #8035ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-details__list li:nth-child(2) i {
  background-image: linear-gradient(-45deg, #ffbc45 0%, #ff5959 100%);
}

.service-details__list li:nth-child(3) i {
  background-image: linear-gradient(-45deg, #61d8ff 0%, #6168ff 100%);
}


.sidebar {
  margin-top: 80px;
}

@media(min-width: 992px) {
  .sidebar__right {
      padding-left: 40px;
      margin-top: 0;
  }
  .sidebar__left {
      padding-right: 40px;
      margin-top: 0;
  }
}

.sidebar__single+.sidebar__single {
  margin-top: 50px;
}

.sidebar__search-form {
  width: 100%;
  height: 60px;
  border-radius: 30px;
  position: relative;
  background-color: #fff;
  box-shadow: 0px 10px 30px 0px rgba(51, 57, 178, 0.15);
}

.sidebar__search-form input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]) {
  display: block;
  border: none;
  outline: none;
  width: 100%;
  height: 60px;
  border-radius: 30px;
  padding-left: 30px;
  color: #8a919e;
  font-size: 16px;
}

.sidebar__search-form ::-webkit-input-placeholder {
  opacity: 1;
  color: #8a919e;
}

.sidebar__search-form ::-moz-placeholder {
  opacity: 1;
  color: #8a919e;
}

.sidebar__search-form :-ms-input-placeholder {
  opacity: 1;
  color: #8a919e;
}

.sidebar__search-form ::-ms-input-placeholder {
  opacity: 1;
  color: #8a919e;
}

.sidebar__search-form ::placeholder {
  opacity: 1;
  color: #8a919e;
}

.sidebar__search-btn {
  border: none;
  outline: none;
  background-image: linear-gradient(90deg, #ffbc45 0%, #ff5959 100%);
  border-radius: 30px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-size: 16px;
  position: absolute;
  right: 0;
  top: 0;
}

.sidebar__title {
  margin: 0;
  color: var(--thm-black);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
}

.sidebar__post-content {
  width: calc(100% - 80px);
}

.sidebar__post-content h3 {
  margin: 0;
  font-size: 17px;
  line-height: 26px;
  color: var(--thm-black);
}

.sidebar__post-content h3 a {
  color: inherit;
  transition: all 500ms ease;
}

.sidebar__post-content h3 a:hover {
  color: var(--thm-base);
}

.sidebar__post-content span {
  font-size: 16px;
  color: #8a919e;
}

.sidebar__single .list-unstyled {
  margin-bottom: 0;
}

.sidebar__post-single {
  display: flex;
  flex-wrap: wrap;
}

.sidebar__post-single+.sidebar__post-single {
  border-top: 1px solid rgba(var(--thm-black-rgb), .1);
  padding-top: 18px;
  margin-top: 13px;
}

.sidebar__post-image {
  border-radius: 10px;
  overflow: hidden;
}

.sidebar__post-image>img {
  width: 80px;
}

.sidebar__post-content {
  padding-left: 20px;
}

.sidebar__tags-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-top: -10px;
}

.sidebar__tags-wrapper a {
  border: 1px solid #e5e5e5;
  color: #8a919e;
  font-size: 14px;
  line-height: 40px;
  border-radius: 20px;
  margin-left: 10px;
  margin-top: 10px;
  position: relative;
  padding: 0 22.75px;
  transition: all 500ms ease;
}

.sidebar__tags-wrapper a:hover {
  color: #fff;
  background-color: var(--thm-base);
  border-color: var(--thm-base);
}

.sidebar__archive-list li,
.sidebar__category-list li {
  position: relative;
}

.sidebar__archive-list li::before,
.sidebar__category-list li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(45deg, #fb974b, #fd005a);
  transform: scale(1, 0);
  border-radius: 30px;
  transition: transform 500ms ease;
  transform-origin: top;
}

.sidebar__category-list li.active::before,
.sidebar__archive-list li:hover::before,
.sidebar__category-list li:hover::before {
  transform: scale(1, 1);
  transform-origin: bottom;
}

.sidebar__archive-list li+li,
.sidebar__category-list li+li {
  margin-top: 15px;
}

.sidebar__category-list li a,
.sidebar__archive-list li a {
  display: block;
  border: 1px solid #e5e5e5;
  line-height: 60px;
  border-radius: 30px;
  padding-left: 30px;
  font-size: 18px;
  font-weight: 600;
  color: white;
  font-family: var(--heading-font);
  position: relative;
  transition: all 500ms ease;
}

.sidebar__category-list li.active a,
.sidebar__category-list li a:hover,
.sidebar__archive-list li a:hover {
  color: #fff;
}

.sidebar__archive-list li a span {
  display: flex;
  align-items: center;
  border-radius: 30px;
  border: 1px solid #e5e5e5;
  justify-content: center;
  color: var(--thm-black);
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  transition: all 500ms ease;
}

.sidebar__archive-list li a:hover span {
  color: #fff;
}

.sidebar__category-list li a {
  position: relative;
  text-align: left;
}

/* .sidebar__category-list li a::before {
  font-family: 'Font Awesome 5 Pro';
  content: "\f105";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--thm-black);
  transition: all 500ms ease;
} */

.sidebar__category-list li.active a::before,
.sidebar__category-list li:hover a::before {
  color: #fff;
}

.sidebar__brouchers .sidebar__category-list li a::before {
  display: none;
}

.sidebar__brouchers .sidebar__category-list li a>i {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--thm-base);
  transition: all 500ms ease;
}

.sidebar__brouchers .sidebar__category-list li a:hover>i {
  color: #fff;
}

.sidebar__brouchers .sidebar__category-list li::before {
  background-image: linear-gradient(90deg, #ffbc45 0%, #ff5959 100%);
}

.sidebar__contact {
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: #f4f6ff;
  border-radius: 10px;
}

.sidebar__contact-list {
  margin-top: -5px;
}

.sidebar__contact-list li {
  position: relative;
  padding-left: 33px;
  font-size: 16px;
  line-height: 30px;
  color: var(--thm-black);
}

.sidebar__contact-list li+li {
  margin-top: 5px;
}

.sidebar__contact-list li a {
  color: inherit;
}

.sidebar__contact-list li i {
  position: absolute;
  top: 5px;
  left: 0;
  font-size: 19px;
  background-image: linear-gradient(-45deg, #dc88ff 0%, #8035ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.sidebar__contact-list li:nth-child(2) i {
  background-image: linear-gradient(-45deg, #ffbc45 0%, #ff5959 100%);
}

.sidebar__contact-list li:nth-child(3) i {
  background-image: linear-gradient(-45deg, #61d8ff 0%, #6168ff 100%);
}

.experience-section .button span{
  font-size: 14.2px;
}




.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}

.my-float{
	margin-top:16px;
}
.cursor-dot {
  width: 20px;
  height: 20px;
  background: linear-gradient(45deg, #fd005a, #fb974b);
  border-radius: 50%; /* Ensure it's circular */
  position: fixed; /* Fixed positioning */
  top: 0;
  left: 0;
  transform: translate(-50%, -50%); /* Center the cursor */
  z-index: 1000; /* Ensure it's above other elements */
  pointer-events: none; /* Allow mouse events to pass through */
}

.cursor-outline {
  width: 40px;
  height: 40px;
  /* border: 2px solid rgb(224, 87, 87); */
  /* border-radius: 50%; */
  position: fixed; /* Fixed positioning */
  top: 0;
  left: 0;
  transform: translate(-50%, -50%); /* Center the cursor */
  z-index: 999; /* Slightly lower than the dot */
  pointer-events: none; /* Allow mouse events to pass through */
  background-image: url(/edu-meeting/assets/images/h2-video01.png);
}

/* Optional: Add a transition for smoother movement */
.cursor-dot, .cursor-outline {
  transition: transform 0.1s ease; /* Smooth movement */
}




::-webkit-scrollbar {
  background: #000000;
  height: 5px;
  width: 5px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 2px #000000;
}

::-webkit-scrollbar-thumb {
  background: #005a2b;
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: #00b456;
}


.wrapper {
  border: 1px solid #000000;
  height: calc(100vh - 2px);
  margin: 0 auto;
  overflow-x: hidden;
  overflow-y: scroll;
  position: relative;
  width: calc(100vw - 2.55px);
}

.scroll-top {
  background: #005a2b;
  border: 0;
  border-radius: 50%;
  bottom: 0;
  cursor: pointer;
  height: 50px;
  margin: 15px;
  opacity: 0.75;
  position: fixed;
  right: -70px;
  transition: right 0.2s ease-in-out;
  width: 50px;
  z-index: 99;
}
.scroll-top.visible {
  right: 0;
}

.arrow {
  border: solid #000000;
  border-width: 0 3px 3px 0;
  display: inline-block;
  margin-top: 5px;
  padding: 4px;
}
.arrow.up {  
  transform: rotate(-135deg);
}

.content-container {
  display: flex;
  height: 300px;
  width: 100%
}

.content {
  color: #ffffff;
  font-size: 24px;
  font-weight: bold;
  margin: auto;
}


@media  (max-width:800px) {
  .contact .content h2{
    font-size: 30px;
    margin: 30px auto;
  }
  .contact .content p{
    font-size: 14px;
  }

.contact_forms .contactInfo .box .text p{
  font-size: 12px;
}
.contact_forms .contactInfo .box .text h3{
  font-size: 20px;
}
}