
/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #37517e; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #47b2e4; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #ffffff;  /* The default color of the main navmenu links */
  --nav-hover-color: #47b2e4; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #47b2e4; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
.about_sec .about_content
.light-background {
  --background-color: #f5f6f8;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #37517e;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #4668a2;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
@font-face{font-family:Ivy Presto;src:url('//static.showit.co/file/8oyxtETbT4e8kXWAnbry3Q/147769/ivypresto_display_thin-webfont.woff');}
/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
     background-color: #1e1e1e;
  font-family: 'Raleway';
  /*font-family: "Comfortaa", serif;*/
   background-color: #a69f88;
}

a {
      color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
     color: #de6672;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
    /*font-family: "Italiana", serif;*/
     font-family: 'Ivy Presto';
     letter-spacing: 0.05em;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
     background: linear-gradient(180deg, #00000078, transparent);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
}
.scrolled .header{
	background: #313131;
}
.scrolled .logo img{
	max-height: 65px !important;
}
.scrolled .logo{
	    padding: 0 26px;
}
.header .logo {
     line-height: 1;
    margin: 0 0px;
    padding: 0 0px;
}

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

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 500;
  color: var(--heading-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
     --background-color: #2d2d2d;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.ftter_logo{
	text-align: center;
    margin-bottom: 25px;
    position: relative;
}
.ftter_logo img{width: 200px;}
.ftter_logo:before{
	content:'';
	position:absolute;
}
.ftter_logo:after{
	content:'';
	position:absolute;
}
.footer {
	background: #313131;
    padding-bottom: 00px;
    position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--heading-color), transparent 95%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
      padding-top: 50px;
}
.f_address{
    font-family: 'Raleway';
}
.f_address h6{
    color: white;
    font-size: 16px;
    font-family: 'Raleway';
}
.f_address p{
	    font-size: 16px;
    color: white;
}
.footer .social-links a {
       display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10%;
    /* border: 1px solid white; */
    font-size: 20px;
    color: white;
    margin-right: 10px;
    transition: 0.3s;
}
.social-links ul{
	        margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
}
.social-links li{
	
}
.ftr_sec_mid{
	border-left: 1px solid grey;
    border-right: 1px solid grey;
    text-align: center;
}
.footer .social-links a:hover {
    color: #917c2f;
    background: #ffffff;
    border: 1px solid #917c2f;
}

.footer h4 {
          margin-bottom: 21px;
    font-weight: bold;
    position: relative;
    padding-bottom: 3px;
    color: white;
    font-size: 26px;
    text-transform: uppercase;
    text-align: center;
}

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

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

.footer .footer-links ul i {
    margin-right: 3px;
    font-size: 16px;
    line-height: 0;
    color: white;
}

.footer .footer-links ul li {
      padding: 5px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.footer .footer-links ul a {
    display: inline-block;
    color: white;
    font-size: 15px;
    font-family: 'Raleway';
    text-transform: uppercase;
}

.footer .footer-links ul a:hover {
     color: #917c2f;
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
     padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid #494949;
}

.footer .copyright p {
    margin-bottom: 0;
    color: white;
    font-size: 13px;
    text-align: center;
}
.copyright p a {
    color: #917c2f;
}
.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}
.social-links{
	justify-content: center;
    margin-top: 20px;
    border-top: 1px solid grey;
    padding-top: 10px;
}
.copyright h4{
	    text-align: center;
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 0;
    padding-bottom: 7px;
    text-transform: capitalize;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
      z-index: 99;
      background-color: #917c2f;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: #9c8944;
    color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}
.port_box{    position: relative;}
.port_box img{
	    width: 100%;
    height: 500px;
    object-fit: cover;
}
.port_box .port_img_icon{
	      display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: .5s;
}
.port_box .port_img_icon a{
	    display: block;
    color: white;
    background: #917c2f;
    height: 60px;
    width: 60px;
    text-align: center;
    line-height: 60px;
    font-size: 25px;
    border-radius: 50%;
}
.mansory_grid .port_box:hover .port_img_icon{
	    top: 50%;
    opacity: 1;
   transition: .5s;
}
.project_title{
	        position: absolute;
    top: 46%;
    left: 0;
    text-align: center;
    right: 0;
    font-size: 60px;
    color: #ffffff;
    z-index: 2;
    font-family: "Italiana", serif;
}
.port_box .port_detail{
	    display: flex;
    padding: 3px 30px;
    text-align: center;
    justify-content: center;
    transition: .9s;
    position: relative;
	     transform: translateY(-85px);
		     position: absolute;
    left: 0;
    right: 0;
}
.port_box:hover .port_detail{
	 transform: translateY(-110px);
    transition: .9s;
}
.port_box .port_detail h5{
	    color: white;
    font-size: 30px;
    font-weight: 600;
    margin: 0;
}
.port_img{position: relative;    overflow: hidden;}
.port_img:after{
	content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30%; /* Adjust overlay height */
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent); /* Smooth fade effect */
}
.port_box .port_detail h5 span{
	display: block;
    font-size: 22px;
    font-weight: 400;
}
.port_box .port_detail i{
	    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 25px;
    color: white;
    font-weight: 800;
    font-size: 32px;
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
.quotes_1 a{display:none;}
.inner_bredcm h2 {
    font-size: 25px!important;
}
.inner_bredcm h2 {
    font-size: 25px!important;
}
.inner_bredcm li a {
    font-size: 12px!important;
}
	.s_img:after {
    border-radius: 20px;
}
.serviceSlider {padding: 0 15px;}
	.swiper_main_content {
    top: 37%;
}
section, .section {
    padding: 55px 0!important;
}
.about_sec .about_content {
    max-width: 90%!important;
}
.about_sec .about_content h3 {
    font-size: 32px!important;
}
.about_sec .about_content h3 span{
    font-size: 19px!important;
}
.about_sec .about_content p {
    font-size: 15px!important;
}

.section-title h2 {
    font-size: 30px!important;
}
.section-title h2 span {
    font-size: 15px!important;
    margin-bottom: 4px!important;
}
.s_img img {
           height: 318px !important;
        border-radius: 20px;
}
.swiper-container {
    padding-left: 10px;  /* 👈 Thoda left-right padding dene ke liye */
    padding-right: 10px;
}

.swiper-slide {
    width: 80%; /* 👈 Slide ki width kam karega taaki side se dikhe */
}
.s_main_bx .s_ftr h5 {
    font-size: 20px!important;
}
.read_more {
    margin-top: 11px!important;
}
#quote_section {
     height: 36vh!important;
}
.featured_sec h2{
	        font-size: 17px !important;
}
.video_frame {
    margin: 25px auto 25px auto!important;
    height: 265px!important;
}
.featured_sec{    padding-top: 20px !important;}
.quotes_1 h5 {
    font-size: 16px!important;
}
.blogs_h .blogs_bx img {
    height: 260px!important;
    border-radius: 15px!important;
}
.blogs_h{
	padding-left:10px;
	padding-right:10px;
}
.blogs_h .blogs_bx .blog_title h6 {
    font-size: 20px!important;
}
.quotes_1 {
    max-width: 80% !important;
    margin: 0 auto !important;
	top: 70px;
}
.quotes_1 svg {
   top: -44px !important;
        width: 41px !important;
}
.quotes_1 h5 span {
    font-size: 19px !important;
    margin-top: 13px!important;
}
.mil-map-frame{
	    margin-top: 35px;
}
.video_section .video_bx img {
            height: 275px !important;
        border-radius: 5px;
}
.video_section .video_bx a i {
    font-size: 35px!important;
}
.video_section .video_bx h5 {
    font-size: 19px!important;
}
.custom-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #313131;
  border-radius: 30px 30px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  z-index: 999;
}

.logo-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -35px;
  background: #313131;
  border-radius: 50%;
  padding: 10px;
}

.footer-logo {
  width: 100px;
  height: auto;
}

.left-btn,
.right-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
}

.left-btn {
  background-color: #fff;
  color: #000;
}

.right-btn {
  background-color: #f44336;
  color: #fff;
}

@media (max-width: 600px) {
  .footer-logo {
    width: 80px;
  }
  .left-btn, .right-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}

.projectSlider{padding:20px 20px;}
.port_img:after{
	border-radius: 15px!important;
}
.port_box img {
    height: auto!important;
    border-radius: 15px!important;
}
.port_box .port_detail {
    padding: 3px 14px!important;
}
.port_box .port_detail h5 {
    font-size: 21px!important;
}
.port_box .port_detail h5 span {
    font-size: 14px!important;
}
.testi_main {
    display: block!important;
}
.testi_main .testi_img img {
    width: 90%!important;
    height: 261px!important;
}
.testi_main .testi_img_content p {
    font-size: 15px!important;
}
.faq-2 .faq-container .faq-item h3 {
    font-size: 14px!important;
}
.quotes_1 a {
    padding: 8px 25px!important;
    font-size: 13px!important;
}
.ftter_logo {
    margin-bottom: 30px!important;
}
.ftr_sec_mid {
    border: none;
}
.footer .footer-links {
    margin-bottom: 1px!important;
}
.mil-hero-inner {
    padding: 47% 0 17px !important;
        min-height: 275px !important;
}
.about_left_text {
    margin: 0 auto 15px;
    justify-content: center;
    display: flex;
}
.related_portfolio h4, .related_portfolio_sec h4 {
    color: black !important;
}


.related_portfolio_sec {
    padding-bottom: 0!important;
}
.counter {
    margin-top: 4px !important;
    margin-bottom: 18px !important;
}
.mil-padding {
    padding: 50px 0!important;
}
.testi_main .testi_img {
    margin: 0 auto!important;
    text-align: center!important;
}
.myteams_about {
    padding: 35px 0!important;
}
.myteams_about h3 {
    font-size: 30px!important;
}
.team_bx img {
    height: 180px!important;
}
.c_box h3 {
    font-size: 20px!important;
}
	.hero , .swiper_main_slider{
		        height: 30vh !important;
        min-height: 30vh !important;
        padding: 0 !important;
	}
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

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

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

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  padding: 80px 0;
  scroll-margin-top: 88px;
  overflow: clip;position: relative;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 15px;
  position: relative;z-index: 1;
}

.section-title h2 {
   margin-bottom: 20px;
    position: relative;
    color: white;
    font-size: 50px;
    letter-spacing: 0.05em;
}
.section-title h2 span{
    font-family: "Comfortaa", serif;
    display: block;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 0px;
    letter-spacing: 0.05em;
}
.section-title img {
      width: 26px;
    height: auto;
}
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 0;
}

.hero h1 {
        margin: 0;
    font-size: 4vw;
    line-height: 105px;
}

.hero p {
	color: white;
    margin: 0;
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 400;
}
.home_btns{
	    justify-content: center;
    margin-top: 0px;
}
.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
            font-size: 13px;
        margin: 10px 10px 0;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}



/*--------------------------------------------------------------
# Faq 2 Section
--------------------------------------------------------------*/
.faq-2 .faq-container {
  margin-top: 15px;
}

.faq-2 .faq-container .faq-item {
    background-color: #313131;
    position: relative;
    padding: 10px 20px 5px 20px;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 10px;
}

.faq-2 .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq-2 .faq-container .faq-item h3 {
         font-size: 20px;
    line-height: 24px;
    margin: 0 30px 0 32px;
    transition: 0.3s;
    cursor: pointer;
    color: white;
    font-weight: 900;
}

.faq-2 .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq-2 .faq-container .faq-item h3:hover {
      color: #917c2f;
}

.faq-2 .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq-2 .faq-container .faq-item .faq-content p {
       margin-bottom: 6px;
    overflow: hidden;
    font-family: 'Raleway';
    color: white;
    font-weight: 300;
    font-size: 15px;
    margin-top: 8px;
}

.faq-2 .faq-container .faq-item .faq-icon {
   position: absolute;
    top: 13px;
    left: 20px;
    font-size: 20px;
    line-height: 0;
    transition: 0.3s;
    color: #917c2f;
}

.faq-2 .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
    color: white;
}

.faq-2 .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq-2 .faq-container .faq-active h3 {
        color: #917c2f;
}
.faq-2 .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}
.faq-2 .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
    color: #917c2f;
}


.menu_btn {
	position: absolute;
    right: 0;
    top: 0;
}
.menu_btn i{
	color: white;
    font-size: 25px;
}
.swiper_main_slider {
     height: 100vh;
     overflow: hidden;
}
.swiper_main_slider .swiper-slide {
     display: flex;
     justify-content: center;
     align-items: center;
     overflow: hidden;
}
 .swiper_main_slider .swiper-slide:after{
	 content:'';
	 position:absolute;
	 Background:#0000004a;
	 left:0;
	 right:0;
	 top:0;
	 bottom:0;
 }
 .swiper_main_slider .swiper-slide img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 6s ease-in-out;
}
.swiper_main_slider img {
     transform: scale(1.1);
}
.swiper_main_slider .swiper-slide-active img {
     transform: scale(1.2);
}
.swiper_main_content {
	    position: absolute;
    left: 10%;
    right: 10%;
    text-align: center;
    z-index: 2;
    top: 50%;
}
.swiper_main_content a{
	       color: white;
    font-size: 38px;
    font-family: "Italiana", serif;
    margin: 2px 35px;
}
.swiper_main_content i{
	color:#917c2f;
}
.swiper_main_content a img{
	       height: auto !important;
    max-width: 100%;
    border: none;
    border-radius: 0;
    box-shadow: none;
    width: 17px !important;
    rotate: -122deg;
    margin-left: 7px;
    margin-top: -10px;  
}
.read_more{margin-top: 35px;}
.read_more a{
	          background: #f4ede7;
    color: #000000;
    display: inline-block;
    padding: 10px 23px;
    border-radius: 5px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.read_more a:hover{
	   background: #917c2f;
    color: white;
}
.section_3_grid .grid_bx{
	position: relative;
    margin-bottom: 20px
}
.section_3_grid .grid_bx img{
	    width: 100%;
    height: 95vh;
    overflow: hidden;
    object-fit: cover;
}
.section_3_grid .grid_bx .grid_bx_content{
	position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000c4;
    padding: 35px;
    backdrop-filter: blur(5px);
}
.section_3_grid .grid_bx .grid_bx_content h4{
	color: white;
    font-size: 35px;
    margin-bottom: 23px;
}
 .section_3_grid .grid_bx .grid_bx_content h4 span{
   color: #d66e6e;
    display: block;
    font-size: 33px;
    margin-bottom: 6px;
}

.section_3_grid .grid_bx .grid_bx_content p{
	    margin: 0;
    color: white;
    font-weight: 400;
    font-size: 17px;
    line-height: 29px;
}
.blogs_h{
	position: relative;
    overflow: hidden;
}
.blogs_h .blogs_bx{position: relative;}
.blogs_h .blogs_bx img{
	    height: 428px;
    width: 100%;
    object-fit: cover;
	 transition: transform 0.9s cubic-bezier(0.25, 1, 0.30, 1);
}
.blogs_h .blogs_bx .blog_title{padding: 25px;}
.blogs_h .blogs_bx .blog_title h6{
	    margin: 0;
    color: white;
    font-size: 30px;
    font-weight: 400;
}
.img_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.blog_inner{
	padding: 50px 0;
}
.plus-icon {
    z-index: 9;
    font-size: 50px;
    color: #c96767;
    transform: scale(0);
    transition: transform 0.5s ease-in-out;
    position: relative;
}
.blog_inner h3{
	    font-size: 34px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
}
.blogs_bx:hover .img_overlay {
	opacity: 1;
}
.blogs_bx:hover .plus-icon {
	transform: scale(1);
}
.image-container{    overflow: hidden;position: relative;}
.blogs_bx:hover img {
	transform: scale(1.03);
}
.about_sec{
	display: flex;
    align-items: center;
}
.about_sec .about_content{
    padding: 0px 0;
    max-width: 73%;
    margin: 0 auto;
    text-align: center;
}
.about_sec .about_content h3{
	    color: white;
    font-size: 60px;
    margin-bottom: 34px;
}
.about_sec .about_content p{
	    color: white;
    font-size: 18px;
}
.about_sec .about_img{
	    width: 50%;
    text-align: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.about_sec .about_img:after{
	content: '';
    position: absolute;
       border: 5px solid #f4ede7;
    left: 86px;
    right: 253px;
    top: 17px;
    bottom: 122px;
    z-index: -1;
}
.about_sec .about_img img{
	height: auto;
    width: 470px;
    object-fit: cover;
}
.bg_section{
	background:#f4ede7;
}
.dark_text{
	color:#292929 !important
}
.swiper-wrapper {
            display: flex;
            transition-timing-function: linear !important; /* Smooth Continuous Effect */
        }
		
 .swiper {
            width: 100%;
            padding: 20px 0;
        }

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

        .clientsWsiper .swiper-slide img {
			   width: auto%;
				height: 100px;
				transition: transform 0.3s ease-in-out;
				object-fit: contain;
				background: white;
				border-radius: 5px;
				padding: 5px;
        }

        .clientsWsiper .swiper-slide img:hover {
            transform: scale(1.03);
        }

        /* Swiper Pagination */
        .swiper-pagination {
            position: relative;
            bottom: 10px;
        }

        /* Swiper Navigation Arrows */
        .swiper-button-next,
        .swiper-button-prev {
            color: #333;
        }
.menu-button{
	     background: #007bff00;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 31px;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 0;
    border-radius: 5px;
    z-index: 1000;
}
.mainmenu{
	 position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: rgba(0, 0, 0, 0.9);
            color: white;
            overflow: hidden;
            text-align: center;
            transition: .2s ease all;
            z-index: 9999;
}
 .mainmenu li img{
	 width: 154px;
    margin-bottom: 34px;
 }
.mainmenu.active{
	 height: 100vh;
	 transition: .2s ease all;
}
 .close-button {
         position: absolute;
    top: 30px;
    right: 40px;
    font-size: 23px !important;
    color: white !important;
    cursor: pointer;
    font-family: 'Comfortaa' !important;
        }
.mainmenu  ul{
	    list-style: none;
    margin: 0;
    padding: 0;
}
 .mainmenu.active a {
            opacity: 1;
            transform: translateY(0);
        }
		
.mainmenu ul li{margin: 1px 0;}
.mainmenu ul li a{
	font-size: 55px;
    font-family: "Italiana", serif;
    color: white;
}
.mainmenu ul li a:hover{
	color: #f17d88;
}

.inner_sec{
	height: 11vw;
}
.mansory_grid {
              column-count: 2;
    column-gap: 15px;
        }

 .mansory_grid .grid-item {
            display: inline-block;
            width: 100%;
                margin-bottom: 10px;
            overflow: hidden;
            transition: transform 0.3s ease-in-out;
        }
.mansory_grid .grid-item img:hover {
            transform: scale(1.05);
			transition: .3s;
        }
.mansory_grid .grid-item img {
            width: 100%;
            height: auto;
            display: block;
			transition: .3s;
        }
.b_title{text-align: center;}
.b_title h2{
	    margin-bottom: 20px;
    color: white;
    font-size: 56px;
}
.b_img{text-align: center;}
.b_img img{    width: 100%;}
.b_desc{
	    padding: 50px;
    text-align: left;
}
.b_desc p{
	    color: white;
    font-size: 17px;
}	
.port_folio_detl{
	    max-width: 1100px;
    margin: 0 auto;
}	


/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
    display: inline-block;
    padding: 8px 20px 10px 20px;
    margin: 0;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 5px;
    border-radius: 50px;
    transition: all 0.3sease-in-out;
    font-family: 'Italiana';
    color: white;
    font-size: 30px;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
 color: var(--contrast-color);
    background-color: #47b2e400;
    border-bottom: 1px solid white;
    border-radius: 0;
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}
.portfolio-item .port_img img{
	height: auto;
}
.portfolio .portfolio-item .portfolio-info {
position: absolute;
    left: 12px;
    right: 12px;
    bottom: 0;
    z-index: 3;
    transition: allease-in-out 0.5s;
    background: linear-gradient(0deg, black, transparent);
    padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}
.video_section{
	    max-width: 1100px;
    margin: 0 auto;
}
.video_section .video_bx{
	    margin-bottom: 25px;
    position: relative;
}
.video_section .video_bx img{
	    width: 100%;
    height: 340px;
    object-fit: cover;transition: .3s;
}
.video_section .video_bx a{
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.video_section .video_bx .v_img{
	    overflow: hidden;
    position: relative;
}
.video_section .video_bx a i{
	font-size: 71px;
    color: white;
    text-shadow: 1px 1px 4px #292929; transition: .3s;
}
.video_section .video_bx h5{
    color: white;
    position: absolute;
    bottom: 0px;
    text-align: center;
    left: 0;
    right: 0;
    font-size: 35px;
    transition: .3s;
    background: linear-gradient(0deg, black, transparent);
    margin: 0;
    padding-top: 5px;
    height: 68px;
    transition: .3s;
    /* margin-top: 19px; */
    border-bottom: 5px solid #a69f88;
}
.video_section .video_bx:hover h5{
	    padding-top: 0px;
    transition: .3s;
}
.video_section .video_bx:hover i{
    font-size: 72px;
    color: #917c2f;
    transition: .3s;
}
.video_section .video_bx:hover img{
	 transform: scale(1.03);transition: .3s;
}
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
   color: white;
        padding: 15px 40px;
        font-size: 16px;
        font-family: system-ui;
        text-transform: uppercase;
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #917c2f;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

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

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: #8c7a34;
  }

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

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

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover>a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .megamenu:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dd-box-shadow {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
           display: none;
        list-style: none;
        position: absolute;
        inset: 0;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: black;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
            color: #d0d0d0;
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

#quote_section:after{
	  
}
.quotes_1{
	z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: white;
    position: relative;
}
.quotes_1 svg{
    width: 60px;
    position: absolute;
    top: -58px;
    fill: #917c2f;
    z-index: 1;
}
.quotes_1 h5{
	    margin: 0;
    font-size: 61px;
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
}
.quotes_1 p{
	     color: white;
    position: relative;
    z-index: 2;
    font-size: 27px!important;
    font-weight: 300;
    margin-top: 12px;
}
.quotes_1 h5 span{
	      display: block;
    font-size: 41px ;
    margin-top: 29px;
    font-weight: 400;
}
.quotes_1 a{
	       background: #ffffff;
    position: relative;
    z-index: 1;
    padding: 12px 30px;
    border-radius: 3px;
    margin-top: 20px;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.quotes_1 a:hover{
	    background: #000000;
    color: #ffffff;
}
#testimonials{position: relative;}

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

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  text-align: center;
    background: #000000c9;
    padding: 30px;
    /* border: 1px solid white; */
    margin: 20px;
    border-radius: 5px;
}

.testimonials .testimonial-item img {
      width: 180px;
    height: 200px;
    border-radius: 5px;
    /* border: 4px solid var(--background-color); */
    margin: 0 auto;
    object-fit: cover;
}

.testimonials .testimonial-item h3 {
      font-size: 30px;
    font-weight: 400;
    margin: 10px 0 5px 0;
    color: #f0e9e3;
}

.testimonials .testimonial-item h4 {
    font-size: 12px;
    color: white;
    font-family: 'Comfortaa';
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #917c2f;
    font-size: 26px;
    line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
    margin: 0 auto 15px auto;
    color: #f4ede7;
}

.testimonials .swiper-wrapper {
  height: auto;
}

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

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

#testimonials:after {
        content: '';
    position: absolute;
      background: #000000c4;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.about_left_text {
    position: relative;
}
.about_left_text img {
       height: auto;
    width: 85%;
    border-radius: 5px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: 0.3s;
}
.inner_bredcm{
        position: relative;
    z-index: 2;
}
.inner_bredcm h2{
	    color: white;
    font-size: 30px;
    font-weight: 600;
}
.inner_bredcm ul{
	    margin: 0;
    list-style: none;
    padding: 0;
    display: flex;
}
.inner_bredcm li {
	    color: white;
    margin-right: auto;
}
.inner_bredcm li a{}
.counter {
   background: #313131 !important;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0px 10px 41px -12px #0000001a;
       margin-top: 75px;
    border-top: 5px solid #f4ede7;
    padding: 10px 0 !important;
margin-bottom: 50px;
}
.counter .counter-number {
      font-size: 47px;
    color: #f4ede7;
    font-weight: 600;
    font-family: "Italiana", serif;
    line-height: 47px;
}
.counter .counter-label {
     color: #ffffff;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 10px;
}
.about_right_text h3 {
       font-size: 38px;
    color: #ffffff;
    margin-bottom: 13px;
}
.about_right_text h3 span {
    font-size: 24px;
    display: block;
    line-height: 38px;
    margin-top: 12px;
    color: #ffffff;
}
.mil-padding p, .mil-padding p span {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 17px;
}
.inner_desc{
	    text-align: center;
    padding: 0px 0 25px;
    position: relative;
    z-index: 1;
}
.bg_shape{position:relative;}
.bg_shape:after {
  content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vw;
    background: #f4ede7;
    z-index: -1;
    clip-path: polygon(0% 0%, 99% 0%, 100% 43%, 0% 100%);
}
.inner_desc p, .inner_desc p span{
	    font-size: 17px;
    color: #181818;
    margin-bottom: 17px;
    line-height: 25px;
}
.mil-hero-inner{
	    padding: 35% 0 17px;
    min-height: 625px;
    background-size: cover !important;
}
.mil-padding{
	    padding: 70px 0;overflow: hidden;
}
.pro_sec{
	text-align:center;
}
.pro_sec h3{
	color: white;
    font-size: 39px;
    font-weight: 600;
}
.serv_img img{
	    width: 100%;
    margin-bottom: 20px;
}
.serv_img h4{
	    color: white;
    font-weight: 600;
    font-size: 26px;
}
.inner_heading{
	    text-transform: uppercase;
    color: white;
    font-weight: 600;
    font-size: 24px;
    border-bottom: 1px solid grey;
    padding-bottom: 12px;
    margin-bottom: 17px;
}
.ser_detail{
	    display: flex
;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 18px;
}
.ser_detail .mil-cover{}
.ser_detail .mil-cover img{
	width: 150px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}
.ser_detail .mil-descr{
	    padding: 10px;
}
.ser_detail .mil-descr h5{
	margin-bottom: 6px;
    color: white;
    font-weight: 600;
}
.c_box{
	    background: #383838;
    border: 1px solid black;
    border-radius: 5px;
    padding: 15px;
    height: 100%;
}
.c_box i{
	color: white;
    font-size: 28px;
    float: left;
    margin-right: 14px;
    /* border: 1px solid grey; */
    padding: 6px;
    height: 60px;
    width: 36px;
}
.c_box h3{
	    color: white;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 2px;
}
.c_box p{
	    margin: 0;
    color: #c9c9c9;
    font-size: 16px;
}
.mil-hero-form-frame {}
.mil-hero-form-frame h3{
	    color: white;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 20px;
}
.mil-hero-form-frame h3 span{
	    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-top: 10px;
}
.mil-input-frame{    margin-bottom: 20px;}
.c_contact {}
.c_contact input{
	    width: 100%;
    border-bottom: 2px solid #000000;
    padding: 10px;
    border-radius: 0;
    background: #00000000;
    border-right: 0;
        color: #000000;
    border-left: 0;
    border-radius: 0;
    border-top: 0;
}
.c_contact textarea{
	  width: 100%;
    border-bottom: 2px solid #000000!important;
    padding: 10px;
    border-radius: 0;
    background: #00000000;
    border: 0;
        color: #000000;
	border-left: 0;
    border-radius: 0;
    border-top: 0;
}
.c_contact select{
	width: 100%;
    border-bottom: 2px solid #000000!important;
    padding: 10px;
    border-radius: 0;
    background: #00000000;
    border: 0;
        color: #000000;
	border-left: 0;
    border-radius: 0;
    border-top: 0;
}
input::placeholder, 
textarea::placeholder {
	color: #000000;
	opacity: 1; 
	
}

input:-ms-input-placeholder, 
textarea:-ms-input-placeholder {
	color: #000000;
}

input::-ms-input-placeholder, 
textarea::-ms-input-placeholder {
	color: #000000;
}

.btn_submit{
	width: 100%;
    padding: 9px 0;
    border: 0;
    background: #917c2f;
    color: white;transition:.3s
}
.btn_submit:hover{
    background: #000000;
    color: white;
	transition:.3s
}
.whatsappbtn {
    position: fixed;
    left: 15px;
    bottom: 25px;
    z-index: 2;
}
.whatsappbtn a {
    background: #37a537;
    display: inline-block;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    line-height: 49px;
    font-size: 28px;
    text-align: center;
}
.related_portfolio, .related_portfolio_sec{padding: 80px 0;}
.related_portfolio h4, .related_portfolio_sec h4{
	    font-size: 35px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}
.related_portfolio_Slider {overflow:hidden;}
.related_portfolio_Slider .testi_bx{text-align:center;}
.related_portfolio_Slider .testi_bx img{
	height: auto;
    width: 390px;
    border: 10px solid white;
}
.related_portfolio_Slider .testi_bx h4{
	color: white;
    margin-top: 22px;
    margin-bottom: 11px;
}
.related_portfolio_Slider .testi_bx h4 span{
	display: block;
    font-size: 17px;
    margin-top: 10px;
}
.related_portfolio_Slider .swiper-slide {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.related_portfolio_Slider .swiper-slide-active {
    opacity: 1;
}
.swiper-pagination-bullet {
    background: #000; /* Change the color as needed */
    opacity: 0.5;
    transition: opacity 0.3s;
}
.related_portfolio_sec{
       margin: 0 auto;
    background: #dad4cf;
}
.swiper-pagination-bullet-active {
    opacity: 1;
}
.s_main_bx .s_ftr h5{
	margin: 0;
    color: white;
    font-weight: 600;
    font-size: 27px;
        
}
.s_main_bx {
        position: relative;
    overflow: hidden;
	    margin-bottom: 30px;
}
.s_img {
       transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
    margin: 0;
    box-shadow: 0 0 0 2px transparent;
    position: relative;
}
.s_img:before{
content: '';
    position: absolute;
    border: 1px solid #f4ede7;
    left: 20px;
    right: 20px;
    top: 20px;
    bottom: 20px;
    z-index: 1;
	box-sizing: border-box;
    transition: all 0.5s ease-in-out; /* Smooth transition */
	border-radius: 20px;
}
.s_img:after{
content: '';
    position: absolute;
    background: linear-gradient(0deg, #000000c7, transparent);
    bottom: 0;
    height: 62px;
    left: 0;
    right: 0;
	    z-index: 2;
}
.s_img img {
        width: 100%;
    display: block;
    transition: transform 0.5s ease-in-out;
    height: 500px;
    object-fit: cover;
}
.blogs_bx .image-container{ position: relative;}
.blogs_bx .image-container:after{
    content: '';
    position: absolute;
    border: 1px solid #f4ede7;
    left: 20px;
    right: 20px;
    top: 20px;
    bottom: 20px;
    z-index: 1;
	box-sizing: border-box;
    transition: all 0.5s ease-in-out; /* Smooth transition */
}
.s_ftr {
       position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
  transition: transform 0.5s ease-in-out;
        z-index: 2;
    /* background-color: rgba(0, 0, 0, 0.5); */
    color: #fff;
    padding: 0;
}
.s_main_bx:hover .s_img:before {
    top: 35px;
    left: 35px;
    right: 35px;
    bottom: 35px;
}
.s_main_bx:hover .s_img img {
    transform: scale(1.1);
}

.s_main_bx:hover .s_ftr {
    transform: translateY(-20px);
}

.s_main_bx:hover .s_img {
    box-shadow: 0 0 0 2px #000; /* Outline color on hover */
}
#clients{    padding-bottom: 25px !important;}
.clients_sec{
	
}
.clients_sec .swiper-wrapper{
	display: flex;
    justify-content: center;
}
.featuredSlider .swiper-slide, .partnersSlider .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px;
}
 .partnersSlider img, .featuredSlider img {
        width: 100%;
        height: 80px;
        transition: transform 0.3s ease-in-out;
        object-fit: contain;
        background: white;
        border-radius: 5px;
    }
	#quote_section {
  position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #f4ede7;
}
.video_frame{
     position: relative;
}
.video_frame:after{
         content: '';
    position: absolute;
    border: 1px solid white;
    left: 13px;
    right: 13px;
    top: 13px;
    bottom: 13px;
    z-index: 2;
    border-radius: 10px;
    background: #31313163;
}
.video_frame{
    width: 90%;
    margin: 80px auto 80px auto;
    height: 550px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    z-index: 2;
}
.video-bg{
     width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.video-bg:after{

}
.team_img:after{
	    content: '';
    position: absolute;
    border: 1px solid white;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
	transition: transform 0.5s ease;
}
.image-bg {
	       width: 100%;
    height: 500px;
}
.team_img {
    overflow: hidden; /* Ensure image doesn't overflow out of its container */
    position: relative;
}

.team_img img {
    width: 100%; /* Ensure image fits the container */
    transition: transform 0.5s ease; /* Smooth transition for zoom effect */
}
.team_img:hover .team_img:after {
    left: 15px;
    right: 15px;
    top: 15px;
    bottom: 15px;
	transition: transform 0.5s ease;
}
.team_img:hover img {
    transform: scale(1.1); /* Zoom in the image */
}
.award_img:after{
	    content: '';
    position: absolute;
    border: 1px solid white;
    left: 10px;
    right: 10px;
    top: 10px;
    bottom: 10px;
	transition: transform 0.5s ease;
}
.award_img {
    overflow: hidden; /* Ensures image doesn't overflow its container */
    position: relative;
}

.award_img img {
    width: 100%; /* Ensures image fits the container */
    transition: transform 0.5s ease; /* Smooth zoom transition */
}

.award_img:hover img {
    transform: scale(1.1); /* Smooth zoom effect on hover */
}

.partner_sec{background:#313131; padding:20px 0;}
.featured_sec{background:#313131; padding:20px 0;}
.testi_main{
	width:1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    margin-bottom: 65px;
	margin-top: 35px;
	overflow:hidden;
}
.testi_main h4{}
.testi_main .testi_img{}
.testi_main .testi_img img{
    width: 536px;
    height: 425px;
    object-fit: cover;
    border: 10px solid #fbfbfb;
    border-radius: 5px;	
}
.testi_main .testi_img_content{  
	transition: opacity 1.5s ease-in-out;
	padding: 20px;
	box-sizing: border-box;
	}
.testi_main .testi_img_content p{
	color: white;
    font-size: 20px;
}
.testi_main .testi_img_content h5{
	    text-transform: uppercase;
    color: white;
    font-weight: 600;
    margin: 0;
    margin-top: 35px;
}
.testi_main .testi_img_content img{
	width: 106px;
    filter: invert(29%) sepia(86%) saturate(726%) hue-rotate(16deg) brightness(91%) contrast(97%);
    mix-blend-mode: multiply;
    margin-top: -18px;
}

.clientSlider .swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clientSlider .testi_main {
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.clientSlider .swiper-slide-active .testi_main {
    opacity: 1
}
.myteams_about{
	 text-align: center;
    padding: 80px 0;
}
.awards_about{
	    text-align: center;
    padding: 80px 0;
    background: white;
}
.myteams_about h3{
    font-size: 34px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.awards_about h3{
	font-size: 34px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #151515;
        letter-spacing: 0.05em;
}
.awards_about h3 span,.myteams_about h3 span{
       display: block;
    font-size: 18px;
    color: #323232;
    font-weight: 400;
    font-family: 'Raleway';
    margin-top: 9px;
    letter-spacing: 0.00em;
}

.award_bx{
	width: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.award_bx img{
	    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 5px;
}
.award_bx h6{
	margin: 0;
    color: #000000;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.05em;
    padding: 17px 0;
}

.team_bx{box-shadow: 3px 3px 55px -42px #080808;}
.team_bx img{
	 width: 100%;
    height: 350px;
    /* border-radius: 5px; */
    object-fit: cover;
}
.team_bx h6{
padding: 22px 15px;
    color: #ffffff;
    font-size: 21px;
    /* background: #313131; */
    font-weight: 700;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    margin-top: 1px;
    /* margin-top: 75px; */
    border-bottom: 5px solid #f4ede7;
    padding: 10px 0 !important;
}
.team_bx h6 span{
	display: block;
    text-transform: uppercase;
    font-size: 13px;
    font-family: system-ui;
    font-weight: 400;
    letter-spacing: 0.08em;
    margin-top: 13px;
}

.hero_mobile {padding: 0 !important;}
.swiper_main_slider_mobile img{
	      width: 100%;
    object-fit: cover;
    height: 590px;
}
.hero_mobile .swiper_main_slider_mobile{
	    height:66vh;
}





