/**
* Template Name: Virtualcareerguide
* Template URL: https://bootstrapmade.com/Virtualcareerguide-free-bootstrap-landing-page-template/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --default-font: "Inter",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}




/* 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: #003e7d; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ffc600; /* 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: #ffc600; /* 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: #1acc8d; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  --blue:#003e7d;
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #d7e3e4;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: rgba(0, 43, 79, 0.9);
	
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0c0091;
  --contrast-color: #ffffff;
}



.dark-background1 {
  --background-color: #08005e;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #0c0091;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  /*font-family: var(--default-font);*/
	font-family: "Inter", sans-serif;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  /*font-family: var(--heading-font);*/ font-family: "Poppins", sans-serif; font-weight:500;
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 135px;
  margin-right: 8px;
	background:#fff; border-radius: 20%;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #003e7d;
}




/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* 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>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

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

  .navmenu a,
  .navmenu a:focus {
    color: color-mix(in srgb, var(--nav-color), transparent 20%);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 25px;
  }

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

  .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: var(--nav-dropdown-hover-color);
  }

  .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;
  }
}

/* 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; display: none;
  }

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    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: #fac303;
  }

  .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);
    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;
  }
}


/* =========================
   PREMIUM FOOTER DESIGN
========================= */

.footer{
    background: linear-gradient(135deg,#003e7d,#002b58);
    color:#fff;
    overflow:hidden;
}

.footer::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:1px;
    background:rgba(255,255,255,0.15);
}

.footer .footer-top{
    padding:80px 0 50px;
}

.footer .footer-about .logo span{
    color:#fff;
    font-size:32px;
    font-weight:700;
    letter-spacing:0;
}

.footer h4{
    color:#fff;
    font-size:22px;
    margin-bottom:25px;
    position:relative;
    padding-bottom:15px;
}

.footer h4::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:50px;
    height:3px;
    background:#ffc107;
    border-radius:30px;
}

.footer .col-lg-4{
    background:rgba(255,255,255,0.03);
    padding:25px;
    border-radius:20px; 
}

.footer .col-lg-4:hover{

    border-radius:20px; box-shadow:0 0 20px rgba(255,193,7,0.25);
}

.footer .footer-contact p{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:18px;
    color:rgba(255,255,255,0.85);
    line-height:1.8;
    font-size:15px;
}

.footer .footer-contact p i{
    color:#ffc107;
    font-size:18px;
    margin-top:4px;
}

.footer .footer-contact a{
    color:rgba(255,255,255,0.85);
    text-decoration:none;
    transition:0.3s;
}

.footer .footer-contact a:hover{
    color:#ffc107;
}

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

.footer .footer-links ul li{
    padding:10px 0;
    transition:0.3s;
}

.footer .footer-links ul li::before{
    content:"\F285";
    font-family: bootstrap-icons;
    margin-right:10px;
    color:#ffc107;
    font-size:13px;
}

.footer .footer-links ul li:hover{
    transform:translateX(5px);
}

.footer .footer-links ul li a{
    color:rgba(255,255,255,0.8);
    transition:0.3s;
    font-size:15px;
}

.footer .footer-links ul li a:hover{
    color:#ffc107;
}

.footer .social-links{
    gap:15px;
}

.footer .social-links a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.12);
    backdrop-filter:blur(10px);
    color:#fff;
    font-size:18px;
    transition:all 0.4s ease; line-height:45px; text-align:center;
}

.footer .social-links a:hover{
    background:#ffc107;
    color:#000;
    transform:translateY(-5px) scale(1.05);
    border-color:#ffc107;
    box-shadow:0 10px 25px rgba(255,193,7,0.35);
}

.footer .footer-newsletter p{
    color:rgba(255,255,255,0.8);
    font-size:15px;
    margin-bottom:25px;
}

.footer .copyright{
    border-top:1px solid rgba(255,255,255,0.1);
    padding:25px 0;
    margin-top:20px;
}

.footer .copyright p{
    color:rgba(255,255,255,0.7);
    font-size:14px;
}

/* Mobile */

@media(max-width:767px){

    .footer{
        text-align:center;
    }

    .footer h4::after{
        left:50%;
        transform:translateX(-50%);
    }

    .footer .footer-contact p{
        justify-content:center;
    }

    .footer .social-links{
        justify-content:center;
    }

}


/* =========================
   FOOTER QR CODE
========================= */

.footer .footer-qr {
    margin-top: 25px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.footer .footer-qr-image {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}

.footer .footer-qr-image img {
    display: block;
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.footer .footer-qr-text {
    display: block !important;
    margin: 12px 0 0 !important;
    padding: 0 !important;

    color: rgba(255,255,255,0.9) !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
    text-align: center;
}




/* Process Section */
.process-section {
    background: #fff;
    padding: 40px;
    border-radius: 8px; border:#5394cd 1px solid;
}

.process-section h2 {
    text-align: center;
    color: #003e7d;
    margin-bottom: 30px; font-weight: 600;
}

/* Process Box */
.process-box {
    margin-bottom: 30px;
}

.process-box h4 {
    margin-bottom:0;
    color: #fff; padding:10px; background: #003e7d; width:35%; border-radius: 12px 12px 0 0;
}

.process-box ul {
    columns: 2;
    padding-left: 20px;
}

.process-box li {
    margin-bottom: 15px;
   font-size: 17px; display:inline-block;
}

/* =========================
   Process Steps
========================= */

/* Process Steps */

.process-steps1 .row {
    margin-left: -8px;
    margin-right: -8px;
}

.process-steps1 .col-sm-3 {
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 16px;
}

.process-steps1 .col-sm-3::before {
    content: "";
    display: block;
    background: #003e7d;
    color: #fff;
    padding: 14px 12px;
    border-radius: 6px;
}


.process-steps1 .process-step {
    background: #003e7d !important;
    color: #fff !important;
    padding: 14px 12px;
    text-align: center;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease; 
}

.process-steps1 .process-step:hover {
    background: #5394cd !important;
}


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

    .process-steps li {
        font-size: 15px;
        padding: 12px;
    }
}


/* Mobile */
@media (max-width: 576px) {
    .process-steps {
        grid-template-columns: 1fr;
    }

    .process-steps li {
        font-size: 14px;
    }
}





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


	.process-section {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: #5394cd 1px solid;}
	

	
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .process-box ul {
        columns: 1;
    }
}


/*--------------------------------------------------------------
# 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: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

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

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 160px 0 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 88%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

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

.page-title nav 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);
 /* background-color: var(--background-color);*/
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  /*font-size: 14px;*/
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title div {
  color: var(--heading-color);
  margin: 0;
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 120px 0 120px 0;
  display: flex;
  align-items: center;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 10%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);
}

.hero h1 span {
  color: var(--heading-color);
  border-bottom: 4px solid var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 22px;
  font-weight: 400;
}

.hero-img1{ padding-top: 50px; padding-bottom: 40px; }

.hero .btn-get-started {
	color:#000;
  /*color: var(--contrast-color);*/
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 12px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 17px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 1200px) {
.hero h1 {
  margin: 0 0 10px 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  color: color-mix(in srgb, var(--heading-color), transparent 30%);}	
	
}

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

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

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

.hero .hero-waves {
  display: block;
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.hero .wave1 use {
  animation: move-forever1 10s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.6;
}

.hero .wave2 use {
  animation: move-forever2 8s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
  opacity: 0.4;
}

.hero .wave3 use {
  animation: move-forever3 6s linear infinite;
  animation-delay: -2s;
  fill: var(--default-color);
}

@keyframes move-forever1 {
  0% {
    transform: translate(85px, 0%);
  }

  100% {
    transform: translate(-90px, 0%);
  }
}

@keyframes move-forever2 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

@keyframes move-forever3 {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

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

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

.hero-slider {
    position: relative;
    padding: 30px;
}

.hero-slider .carousel-item img {
    border-radius: 20px;
    max-height: 700px;
    object-fit: cover;
    width: 100%;
}

.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.hero-slider .carousel-control-prev {
    left: -20px;
}

.hero-slider .carousel-control-next {
    right: -20px;
}

.hero-slider .carousel-control-prev-icon,
.hero-slider .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.hero-slider .carousel-item.active img {
    animation: up-down 2s ease-in-out infinite alternate-reverse;
}

@media(max-width:991px){

    .hero-slider{
        margin-bottom:40px;
    }

    .hero-slider .carousel-control-prev{
        left:0;
    }

    .hero-slider .carousel-control-next{
        right:0;
    }

}

.hero-content h1,
.hero-content p,
.hero-content .btn-get-started {
    opacity: 0;
}

.hero-content.animate h1 {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-content.animate p {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: .3s;
}

.hero-content.animate .btn-get-started {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: .6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 100px;
}

.about .content h3 {
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  padding: 10px 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
  border-radius: 7px;
  display: inline-block;
}

.about .content h2 {
  font-weight: 700;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .icon-box {
  background-color: var(--surface-color);
  padding: 50px 40px;
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease-out 0s;
}

.about .icon-box i {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  line-height: 0;
  transition: all 0.4s ease-out 0s;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.about .icon-box h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
	height: 50px;
}

@media (max-width: 1200px) {
    .about .icon-box h3 {
        font-size: 20px;
        line-height: 24px;
        height: auto;    } 


.about .content h2 {
  font-weight: 600; font-size:22px;
}

}

.about .icon-box p {
  margin-bottom: 0;
}

.about .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about .icon-boxes .col-md-6:nth-child(2) .icon-box,
.about .icon-boxes .col-md-6:nth-child(4) .icon-box {
  margin-top: -40px;
}

@media (max-width: 768px) {

  .about .icon-boxes .col-md-6:nth-child(2) .icon-box,
  .about .icon-boxes .col-md-6:nth-child(4) .icon-box {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-item {
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  position: relative;
}

.features .features-item i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 0;
}

.features .features-item h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .features-item h3 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .features-item:hover {
  border-color: var(--accent-color);
}

.features .features-item:hover h3 a {
  color: var(--accent-color);
}


.leftpic img { position: relative; }




/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  width: 54px;
  height: 54px;
  font-size: 24px;
  border-radius: 50px;
  border: 2px solid var(--background-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.stats .stats-item {
  background-color: var(--surface-color);
  margin-top: -27px;
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  z-index: 0;
}

.stats .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 17px; height: 30px;
	
}

@media (max-width: 1200px) {	
.stats .stats-item span {
  font-size: 20px;
  display: block;
  font-weight: 700;
  color: color-mix(in srgb, var(--default-color), transparent 20%);}
	
}


/*--------------------------------------------------------------
# Details Section
--------------------------------------------------------------*/
.details .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.details .features-item+.features-item {
  margin-top: 100px;
}


.details .features-item h3 {
  font-weight: 600;
  font-size: 22px;
}

.details .features-item ul {
  list-style: none;
  padding: 0;
}

.details .features-item ul li {
  padding-bottom: 10px;
  display: block;
  align-items: left;
}

.details .features-item ul li strong{display: block;
  align-items: left;padding-bottom: 10px;}

.details .features-item ul li:last-child {
  padding-bottom: 0;
}

.details .features-item ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.details .features-item p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
	.details .features-item h3 {
	  font-weight: 600;
	  font-size: 20px;}
}

@media (max-width: 640px) {
  .details .features-item+.features-item {
    margin-top: 40px;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
  overflow: hidden;
  border-right: 3px solid var(--background-color);
  border-bottom: 3px solid var(--background-color);
}

.gallery .gallery-item img {
  transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}


/*-----------------why-grid---------------*/
.vcg-why-grid{
    display:block;
    grid-template-columns:repeat(3,1fr);
    
}

.vcg-why-box{
    background:#fff;
    padding:5px 0;
    /*border-radius:20px;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);*/
    transition:0.4s;
}

.vcg-why-box:hover{
    transform:translateY(-8px);
}
.vcg-why-box h3{
    margin:0;
    font-size:20px;
    color:#111;
    font-weight:500;
}

.vcg-top{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:8px;
}

.vcg-icon{
    width:50px;
    height:50px;
    min-width:50px;
    background:var(--accent-color);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.vcg-icon i{
    color:#fff;
    font-size:18px;
}

.vcg-why-box p{
    font-size:16px;
    line-height:1.9;
    color:#555;
}

/* Responsive */

@media(max-width:991px){

    .vcg-why-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .vcg-why-grid{
        grid-template-columns:1fr;
    }

    .vcg-why-title h2{
        font-size:34px;
    }

}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 80px 0;
  position: relative;
}

.testimonials:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.testimonials .testimonials-bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.testimonials .container {
  position: relative;
  z-index: 3;
}

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

.testimonials .testimonial-item {
  text-align: center;
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 50%;
  border: 6px solid color-mix(in srgb, var(--default-color), transparent 85%);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 16px;
  margin: 0 0 15px 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  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;
}

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

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

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

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

@media (min-width: 992px) {
  .testimonials .testimonial-item p {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .pic {
  overflow: hidden;
  margin-bottom: 50px;
}

.team .member .member-info {
  background-color: var(--surface-color);
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: -50px;
  left: 20px;
  right: 20px;
  padding: 20px 15px;
  overflow: hidden;
  transition: 0.5s;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
  position: relative;
  padding-bottom: 10px;
}

.team .member h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  bottom: 0;
  left: 0;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member .social {
  position: absolute;
  right: 15px;
  bottom: 15px;
}

.team .member .social a {
  transition: color 0.3s;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.team .member .social a:hover {
  color: var(--accent-color);
}

.team .member .social i {
  font-size: 16px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px 40px;
  height: 100%;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 500;
}

.pricing .description {
  font-size: 16px;
}

.pricing .cta-btn {
  border: 1px solid var(--default-color);
  color: var(--default-color);
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}

.pricing .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul li:last-child {
  padding-bottom: 0;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .featured {
  position: relative;
}

.pricing .featured .popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 15px 6px 15px;
  margin: 0;
  border-radius: 5px;
 /* font-size: 14px;*/
  font-weight: 500;
}

.pricing .featured .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: var(--surface-color);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0px 5px 25px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

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

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 17px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

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

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

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

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 22px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

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

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

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.contact .php-email-form {
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  /*font-size: 14px;*/
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}


.contact div.wpforms-container-full .wpforms-form textarea.wpforms-field-large {
  height: 100px!important;
}

div.wpforms-container-full .wpforms-form button[type="submit"]{
  background-color:  var(--accent-color)!important;
  border: 1px solid var(--accent-color)!important;
  color: var(--contrast-color)!important;
  font-size: 1em;
 padding: 10px 30px!important;
  transition: 0.4s;
  border-radius: 50px;
}



/*------------------next------------------*/

/* -- Inner Area -- */




.roofLink{display:block; display:block; overflow:hidden; position:relative; top:-125px; z-index:99; margin-bottom: -75px;}
.roofLink > div{padding:0; background:var(--red); text-align:right; color:#fff; position:absolute; bottom:1px; width:100%;}
.roofLink > div a{color:#fff; display:inline-block; padding:10px 30px; border-left:1px #fff solid;}
.roofLink > div a i{margin-left:5px;}
.roofLink > div a:hover{background:var(--dark);}
.roofLink img{width:45%; position:relative; z-index:5;}

/*
.nxtbannerarea{ display:block;  position:relative; clear:both; margin:0 auto;  }
.nxtbannerarea:before{ display:block; overflow:hidden; position: absolute; top: 0; left: 0; content: ''; z-index:0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(1px);}
.nxtbannerarea .inner-header{ text-align: center; color:#fff; padding:0 0 10px; position:absolute; bottom:20%; left:50%; transform: translate(-50%, -50%); width: 100%; }
.nxtbannerarea .inner-header h1{ font-size:50px; color:#fff}
.nxtbannerarea .inner-header ul.breadcrumb-list { display:block; padding:0!important; margin:0!important; list-style-type:none!important; text-align: center;}
.nxtbannerarea .inner-header ul.breadcrumb-list li{ display:inline-block!important; padding:0 10px 0 0!important; margin:0!important; font-size:14px!important; color:#fff; position:relative; }
.nxtbannerarea .inner-header ul.breadcrumb-list li:before{ content:'/'!important; position:absolute!important; top:0!important; left:-8px!important;}
.nxtbannerarea .inner-header ul.breadcrumb-list li a{ color:#fff; background:none!important; font-weight:400!important;}
.nxtbannerarea .inner-header ul.breadcrumb-list li a:hover{ color:#ffe87d;}
.nxtbannerarea .inner-header ul.breadcrumb-list li:first-child:before{ display:none; padding:0; }*/

.nxtbannerarea {
  position: relative;
  width: 100%;
  min-height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Background Image */
.nxtbannerarea img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Overlay */
.nxtbannerarea:before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

/* Content container */
.nxtbannerarea .container {
  position: relative;
  z-index: 3;
}

/* Center content */
.nxtbannerarea .inner-header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: #fff;
}

/* Heading */
.nxtbannerarea .inner-header h1 {
  font-size: 50px;
  color: #fff;
  margin-bottom: 10px;
}

/* Breadcrumb */
.nxtbannerarea .inner-header ul.breadcrumb-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nxtbannerarea .inner-header ul.breadcrumb-list li {
  display: inline-block;
 /* font-size: 14px;*/
  color: #fff;
  position: relative;
  padding-right: 10px;
}

.nxtbannerarea .inner-header ul.breadcrumb-list li:before {
  content: '/';
  position: absolute;
  left: -8px;
  top: 0;
}

.nxtbannerarea .inner-header ul.breadcrumb-list li:first-child:before {
  display: none;
}

.nxtbannerarea .inner-header ul.breadcrumb-list li a {
  color: #fff;
}

.nxtbannerarea .inner-header ul.breadcrumb-list li a:hover {
  color: #ffe87d;
}

/* SVG Waves */
.nxtbannerarea .hero-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 3;
}

.nxtbannerarea .wave1 use {
  animation: move-forever1 10s linear infinite;
  fill: #fff;
  opacity: 0.6;
}

.nxtbannerarea .wave2 use {
  animation: move-forever2 8s linear infinite;
  fill: #fff;
  opacity: 0.4;
}

.nxtbannerarea .wave3 use {
  animation: move-forever3 6s linear infinite;
  fill: #fff;
}




.sub-menu-toggle{ display: none!important;}

.nextareasp { background:#f3f3f3!important; padding:30px; display: block; margin-top:0; margin-bottom:0!important;}

.nxtaboutArea { float:left; width:100%; clear:both; /*padding:60px 0;*/ color:#111; background:#444 no-repeat url('../images/nextbg.png') center center;  position:relative; z-index:10;}
.nxtaboutArea .bginner{ background:#fff; margin-top: -50px; margin-bottom: 50px;border-top: 5px solid var(--red);  padding:60px 40px; -webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.75); border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px; -moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.75); box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.75);}
.nxtaboutArea h2 strong{clear:both; display:block; color:var(--skyblue);}
.nxtaboutArea p{margin-bottom:30px;}

.nxtaboutArea ul{ display: block; padding: 0; margin: 0; list-style-type: none!important;}
.nxtaboutArea ul li{ position: relative; padding-left:20px; padding-bottom: 20px; display: block}
.nxtaboutArea ul li:before{ position: absolute; left: 0; top:0; content:'\f138'; font-family:'Font Awesome 5 Free'; font-weight: 900; color:#444; }


.nxtaboutArea input, .nxtaboutArea textarea{width:100%; border:1px #ccc solid; height:50px; padding:5px 10px; margin-bottom:15px;}
.nxtaboutArea textarea{height:200px;}
.nxtaboutArea input[type="submit"]{border:none; background:var(--red); color:#fff; font-weight:600; margin-bottom:0px;}
.nxtaboutArea input[type="submit"]:hover{cursor:pointer; background:var(--skyblue);}
/*.nxtaboutArea > div > .row > [class^="col-"] > div{background:#fff; display:block; overflow:hidden; padding:40px; color:#222; position:relative; top:-125px; margin-bottom:-125px; border-radius:10px;
-webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.75);
box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.75);}*/

ul.nxtaboutAreaimg li{ display:inline-block; padding:10px 5px 10px; width:30%; margin:40px 10px 10px; text-align:center; background:var(--blue); color:#fff; border-radius:10px; text-transform:uppercase; letter-spacing:1px; font-weight:700; font-size:14px;
-webkit-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.75);
box-shadow: 0px 5px 5px 0px rgba(0,0,0,0.75);
}
ul.nxtaboutAreaimg li i{display:block;width:100%;margin-bottom:15px; font-size:36px;}
ul.nxtaboutAreaimg li h4{display:block;font-size:20px; padding-top: 20px;}
ul.nxtaboutAreaimg li:hover{background:var(--light)!important; color: #111;}


.gallery-listing-area{margin-bottom:0; display: block!important; padding: 80px 0 0; margin-top:50px; /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffc045+0,ffc045+100&0.65+0,0+100 */
background: -moz-linear-gradient(top,  rgba(255,192,69,0.65) 0%, rgba(255,192,69,0) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(255,192,69,0.65) 0%,rgba(255,192,69,0) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(255,192,69,0.65) 0%,rgba(255,192,69,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a6ffc045', endColorstr='#00ffc045',GradientType=0 ); /* IE6-9 */ }
.gallery-listing-area h2{ padding-bottom:40px!important; margin-bottom: 0!important; line-height: 1!important; font-size: 24px;  padding-left:0!important; border-left:none!important;}
.gallery-listing-area p{font-size:18px; padding-bottom: 20px!important;}
.gallery-listing [class^="col-"] div{display:block!important; margin-bottom:30px!important }
.gallery-listing [class^="col-"] div img{padding:0; height:250px!important; object-fit:cover;  display:block; overflow: hidden; width:100%!important; transition:.2s ease-in-out!important;	 
	transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;}
.gallery-listing [class^="col-"] div img:hover{opacity:0.5!important;	transform:scale(1.05,1.05)!important;}
.gallery-listing > .row [class^="col-"] > div h3{font-size:15px; font-weight:600; line-height:1.5; margin-bottom:0;padding:3px 10px; font-weight:600; background:#b92a30; color:#fff;}



div.wpforms-container-full .wpforms-form textarea.wpforms-field-large {height: 100px !important;}
div.wpforms-container-full .wpforms-form button[type=submit]{background-color:var(--blue)!important; color: #fff!important; border: 1px solid var(--blue)!important; width: 100%; cursor: pointer;}
div.wpforms-container-full .wpforms-form button[type=submit]:hover{ background-color: #000!important; border: 1px solid #000!important;}



.client-gallery-list {
    list-style-type: none!important;
    margin: 0!important;
    padding: 0!important;
	display: block;

}

.client-gallery-list li {
    background: #ffffff;
    padding: 0!important; margin:6px 2px; width: 16%;
    border-radius: 8px;

    display:inline-block!important;
    align-items: center;
    justify-content: center;

    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: 0.3s ease; box-sizing: border-box!important;
}

.client-gallery-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.client-gallery-list img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
}

.client-gallery-list li:before{ display: none!important}


.nxtproductArea{display:block; padding:20px 0; text-align:center;}
.nxtproductArea h2{color:var(--red); font-size:42px; margin-bottom:10px;}
.nxtproductArea h2 + p{font-size:24px; margin-bottom:40px;}
.nxtproductArea [class^="col-"] div{background:var(--red); padding:30px; border-radius: 0 0 30px 30px; filter: drop-shadow(0 2mm 1mm rgba(0, 0, 0, 0.2)); margin-bottom: 30px}
.nxtproductArea > div > div img{margin-bottom:10px; border-radius:8px;}
.nxtproductArea > div > div h5{font-size:16px; color:#fff; text-transform: uppercase; margin-bottom:5px;}
.nxtproductArea > div > div p{font-size:14px; margin-bottom:5px;}
.nxtproductArea > div > div p + span{font-size:14px; line-height:1.4; display:inline-block; padding:2px 10px; border-radius:5px; background:#000; color:#fff;}
.nxtproductArea .owl-theme .owl-dots{z-index:80; position:relative; width: 150px;  margin: 0 auto;}
.nxtproductArea .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{background:var(--yellow);}

.nxtproductArea .owl-theme .owl-nav [class*="owl-"]{margin:0 80px; color:#fff; background:var(--red); width:30px; height:30px; text-align:center; line-height:30px; border-radius:50%;}
.nxtproductArea .owl-theme .owl-nav [class*="owl-"]:hover{background:var(--purple); color:#fff!important;}
.nxtproductArea .owl-theme .owl-nav{position:relative; top:24px; z-index:50;}


/*.leftcontact{margin:0 auto; text-align: center; padding:50px 40px; color: #000; background: #c37452; 
background-size: cover; color: #fff}
.leftcontact a{color:#fff; background:#111; padding:0 4px;  }
.leftcontact a:hover{color:#c37452;; }*/

.leftcontact {
    background: #003e7d;
    padding: 30px 25px;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* Heading */
.leftcontact h4 {
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 20px;
}

/* Phone link */
.leftcontact h4 a {
    color:#ffc600;
    font-weight: 600;
    text-decoration: none;
}

.leftcontact h4 a:hover {
    text-decoration: underline;
}

/* Form box */
.contact-form {
    background: #ffffff;
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #eee;
}

/* Form title */
.contact-form h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #006633;
    text-align: center;
}

/* WPForms styling */
.wpforms-form input,
.wpforms-form textarea,
.wpforms-form select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 15px;
}

/* Focus effect */
.wpforms-form input:focus,
.wpforms-form textarea:focus {
    border-color: #006633;
    outline: none;
}

/* Submit button */
.wpforms-form button,
.wpforms-form input[type="submit"] {
    background: #006633;
    color: #fff;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

.wpforms-form button:hover,
.wpforms-form input[type="submit"]:hover {
    background: #004d26;
}

/* Responsive */
@media (max-width: 768px) {
    .leftcontact {
        padding: 20px;
    }

    .contact-form {
        padding: 20px;
    }
}


.inner-page-section {
  width: 100%;
  position: relative;
  padding: 80px 0;
  background-color: #fff;
  background-image: url('../img/nextbg.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


/* Inner White Box */
.inner-page-section .inner-box {
  background: #fff;
  padding: 60px 40px;
  margin-top: -60px;
  margin-bottom: 60px;
  border-radius: 20px;
  border-top: 5px solid var(--red);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Headings */
.inner-page-section h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 25px;
}

/* Form Fields */
.inner-page-section input,
.inner-page-section select,
.inner-page-section textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  margin-bottom: 15px;
  border-radius: 6px;
  transition: 0.3s;
}

.inner-page-section input:focus,
.inner-page-section textarea:focus {
  border-color: var(--orange);
  outline: none;
}

/* Submit Button */
.inner-page-section input[type="submit"] {
  background: var(--dark);
  color: #fff;
  padding: 14px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  transition: 0.3s;
}

.inner-page-section input[type="submit"]:hover {
  background: var(--orange);
}

/* Contact Info List */
.inner-page-section ul {
  list-style: none;
  padding: 20px;
  background: #444;
  /*border-radius: 10px;*/border-radius: 0 12px 12px 12px;
}

.inner-page-section ul li {
  color: #fff;
  margin-bottom: 15px;
  position: relative;
  padding-left: 28px;
}

/* Arrow Before List */

.inner-page-section ul li::before {
  content: "➜";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 16px;
  font-weight: bold;
}

.inner-page-section ul li strong {
  display: block;
  margin-top: 15px;
  color: var(--gold);
}

.inner-page-section ul li a {
  color: #fff;
  transition: 0.3s;
}

.inner-page-section ul li a:hover {
  color: var(--orange);
}

/* Gallery */
.gallery-grid {
  margin-top: 30px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 20px;
}

.gallery-item img {
  width: 100%;
  transition: 0.4s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}


/*--------------- Modern About Section ----------------*/
.about-section {
    /*padding: 80px 0;
   /* background: #f5f8fc;*/
    position: relative;
    overflow: hidden;
}


/* ===== MAIN WRAPPER ===== */
.about-wrapper {
    max-width: 1300px;
    margin: auto;
}

/* ===== TOP IMAGE ===== 
.about-top-img {
    margin-bottom: 50px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.about-top-img img {
    width: 100%;
    display: block;
    transition: 0.5s ease;
}

.about-top-img:hover img {
    transform: scale(1.03);
}

/* ===== ABOUT INTRO ===== 
.about-intro {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 50px;
    align-items: center;
    margin-bottom: 70px;
}

.about-intro-content {
    background: #fff;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

.about-intro-content::before {
    content: "";
    width: 80px;
    height: 5px;
    background: var(--accent-color);
    position: absolute;
    top: 0;
    left: 50px;
    border-radius: 20px;
}

.about-intro-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #0c2d57;
    line-height: 1.2;
}

.about-intro-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
}

.about-side-img {
    position: relative;
}

.about-side-img img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}*/



.about-area-modern{
    position:relative;
    /*padding:80px 0;*/
}

.about-full-content{
    width:100%;
}

/*.about-full-content h2{
    font-size:48px;
    line-height:1.2;
    margin-bottom:25px;
    color:#111;
    font-weight:500;
}*/
.about-full-content h2{
    font-size:40px;
    line-height:1.2;
    font-weight:500;
    color:#111;
    margin-bottom:30px;
    font-family:'Poppins', sans-serif;
}

/* Different Color Text */

.about-full-content h2 span{
    color:#003e7d;
    font-weight:500;
    margin-right:12px;
    position:relative;
}


.about-full-content p{
    font-size:17px;
    line-height:1.9;
    color:#222;
    margin-bottom:25px;
    text-align:justify;
}

/* Floating Right Image */

.about-floating-image{
    width:38%;
    float:right;
    margin-left:50px;
    margin-bottom:35px;
}

.about-floating-image img{
    width:100%;
    height:530px;
    object-fit:cover;
    display:block;
}

/* Responsive */

@media(max-width:991px){

    .about-floating-image{
        width:100%;
        float:none;
        margin-left:0;
        margin-bottom:30px;
    }

    .about-floating-image img{
        height:auto;
    }

    .about-full-content h2{
        font-size:34px;
    }

}



/* ===== MOTTO SECTION ===== 
.about-highlight {
    background: linear-gradient(135deg, #0c2d57, #143d73);
    border-radius: 35px;
    padding: 70px;
    margin-top: 30px;
    overflow: hidden;
    position: relative;
}

.about-highlight::before {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
}

.motto-wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.motto-text {
    color: #fff;
}

.motto-text span {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
  
    font-weight: 600;
}

.motto-text h2 {
    font-size: 42px;
    margin: 15px 0 20px;
    color: #fff;
}

.motto-text p {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,0.85);
}

.motto-img img {
    width: 100%;
    border-radius: 30px;
    border: 8px solid rgba(255,255,255,0.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* ===== VISION & MISSION ===== 
.about-flex {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
    margin-top: 60px;
}

.about-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    transition: 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.about-card:hover {
    transform: translateY(-10px);
}

.about-card-img {
    overflow: hidden;
}

.about-card-img img {
    width: 100%;
    transition: 0.5s ease;
}

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

.about-card-content {
    padding: 35px;
}

.about-card-content h2 {
    font-size: 30px;
    margin-bottom: 15px;
    color: #0c2d57;
}

.about-card-content p {
    color: #666;
    line-height: 1.8;
    font-size: 17px;
}

/* ===== RESPONSIVE ===== 
@media(max-width: 991px){

    .about-intro,
    .motto-wrapper,
    .about-flex{
        grid-template-columns: 1fr;
    }

    .about-highlight{
        padding: 40px 30px;
    }

    .about-intro-content{
        padding: 35px;
    }

    .about-intro-content h2,
    .motto-text h2{
        font-size: 32px;
    }
}

@media(max-width: 767px){

    .about-section{
        padding: 60px 15px;
    }

    .about-intro-content{
        padding: 25px;
        border-radius: 20px;
    }

    .about-highlight{
        border-radius: 20px;
        padding: 30px 20px;
    }

    .about-card{
        border-radius: 20px;
    }

    .about-card-content{
        padding: 25px;
    }
}

 */

/* =========================
VISION MISSION MOTTO
========================= */

.vmv-section{
    padding:120px 0;
    overflow:hidden;
    position:relative;
}

.vmv-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    flex-wrap:wrap;
}

/* CIRCLE */

.vmv-circle{
    width:400px;
    height:400px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:22px;
    position:relative;
    transition:0.5s ease;
    backdrop-filter:blur(10px);
    overflow:hidden;
}

/* OVERLAP */

/*.mission-circle{
    margin-left:-70px;
    z-index:2;
}

.motto-circle{
    margin-left:-70px;
    z-index:1;
}*/

.vmv-content{
    position:relative;
    z-index:2;
    text-align:center;
}

.vmv-circle{
    text-align:center;
}

.vmv-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    flex-wrap:wrap;
}


/* COLORS */

.vision-circle{
    background:linear-gradient(135deg,#005bea,#00c6fb);
}

.mission-circle{
    background:linear-gradient(135deg,#003973,#005AA7);
}

.motto-circle{
    background:linear-gradient(135deg,#11998e,#38ef7d);
}





/* INNER LIGHT */

.vmv-circle::before{
    content:'';
    position:absolute;
    width:180px;
    height:180px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    top:-40px;
    right:-40px;
}

/* HOVER */

.vmv-circle:hover{
    transform:translateY(-15px) scale(1.04);
    z-index:99;
    box-shadow:0 25px 60px rgba(0,0,0,0.18);
}

/* CONTENT */

.vmv-content{
    position:relative;
    z-index:2;
    text-align:left;
}

.vmv-content h2{
    color:#fff;
    font-size:32px;
    margin-bottom:20px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
	text-align: center;
}

.vmv-content p{
    color:rgba(255,255,255,0.92);
    font-size:18px;
    line-height:1.8; text-align: center;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .vmv-circle{
        width:320px;
        height:320px;
        padding:40px;
    }

}

@media(max-width:991px){

    .vmv-wrapper{
        flex-direction:column;
        gap:30px;
    }

    .mission-circle,
    .motto-circle{
        margin-left:0;
    }

}

@media(max-width:767px){

    .vmv-circle{
        width:100%;
        height:auto;
        min-height:320px;
        border-radius:40px;
    }

    .vmv-content h2{
        font-size:32px;
    }

    .vmv-content p{
        font-size:16px;
    }

}



/*---------------Next page About-----------------------
.about-section {
    padding: 40px 30px;
    /*background: #e9f3fb;
    font-family: 'Poppins', sans-serif;*/
}

/* ===== ABOUT WRAPPER ===== 
.about-wrapper {
    padding: 20px 20px;
    background: #f9fcff;
}

/* ===== TOP ROUND IMAGE ===== 
.about-top-img {
    /*text-align: center;
    margin-bottom: 30px;*/
    animation: fadeDown 1s ease;
}

.about-top-img img { width: 100%;
   /* width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%; 
    border: 6px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);*/
}

/* ===== INTRO ===== 
.about-intro {
   /* max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
    animation: fadeUp 1s ease;
}

.about-intro h2 {
    font-size: 34px;
    color: #006633;
    margin-bottom: 15px;
}

.about-intro p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}*/

/* ===== MOTTO SECTION ===== 
.about-highlight {
    background: #0c2d57;
    padding: 60px 20px;
    color: #fff;
    margin-top: 40px;
}

/* FLEX GRID 
.motto-wrapper {
    max-width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

/* TEXT 
.motto-text {
    border-left: 5px solid #00c6ff;
    padding-left: 20px;
    animation: fadeLeft 1s ease;
}

.motto-text h2 {
    font-size: 32px;
    margin-bottom: 15px;  color: var(--accent-color);
}

.motto-text p {
    font-size: 18px;
    line-height: 1.7;
}*/

/* IMAGE RIGHT 
.motto-img {
    text-align: center;
    animation: fadeRight 1s ease;
}

.motto-img img {
    width: 300px;
    height: auto;
    object-fit: cover;
    /*border-radius: 50%;
    border: 6px solid #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ===== VISION MISSION ===== */
/*.about-flex {
    display: flex;
    gap: 30px;
    margin-top: 60px;
}

.about-flex div {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border-top: 4px solid #0c2d57;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.about-flex div:hover {
    transform: translateY(-8px);
}

.about-flex h2 {
    color: #0c2d57;
    margin-bottom: 10px;
}*/

/* FLEX GRID 
.about-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* CARD 
.about-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.about-card:hover {
    transform: translateY(-8px);
}

/* IMAGE 
.about-card-img {
    height: 220px;
    overflow: hidden;
}

.about-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

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

/* CONTENT 
.about-card-content {
    padding: 25px;
}

.about-card-content h2 {
    color: #0c2d57;
    margin-bottom: 10px;
}

.about-card-content p {
    color: #555;
    line-height: 1.7;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ===== RESPONSIVE ===== 
@media (max-width: 768px) {

    .motto-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .motto-text {
        border-left: none;
        border-top: 4px solid #00c6ff;
        padding-left: 0;
        padding-top: 15px;
    }

    .about-flex {
        flex-direction: column;
    }

    .motto-img img {
        width: 180px;
        height: 180px;    }
	
	.about-top-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);}
	
	.inner-page-section .inner-box {
  background: #fff;
  padding:20px;}
	
	.about-section {
  padding: 20px;
  background: #e9f3fb;
  
}
	.about-intro h2 {
  font-size: 24px;
  color: #006633;
  margin-bottom: 15px;}
	
	.about-flex {
  display: block;
  margin-top: 30px;}
	
	.about-card {
  margin-bottom: 30px;}
	
}*/












/*-------------------Services----------------------*/
.services-section {
  /* padding: 50px 30px;
    background: #f7faf7;*/
    
}

.services-section .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h1 {
    font-size: 36px;
    color: #006633;
    margin-bottom: 10px;
}

.services-header p {
    color: #555;
    max-width: 750px;
    margin: auto;
    line-height: 1.7; font-size:17px;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.service-box {
    /*background: linear-gradient(to bottom, #ffffff 0%, #b5dfea 100%);*/
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e6f2f6;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Hover effect aro premium korte */
.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    background: linear-gradient(to bottom, #ffffff 0%, #a6d7e5 100%);
}

/*.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08); background: #fff;
}*/

.service-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    border-radius: 14px;
    margin-bottom: 20px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-box:hover .service-img img {
    transform: scale(1.08);
}


.service-box h3 {
    color: #003e7d;
    margin-bottom: 10px; font-size:22px; 
}

.service-box p {
  font-size: 17px;
    color: #555;
}

@media (max-width: 1200px) {
	.service-box h3 {
        font-size: 18px; 
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-img {
        height: 200px;
    }

    .service-box h3 {
        font-size: 18px; 
    }
	
	
	.services-section {
    padding: 20px;
    /*background: #f7faf7;*/
    /*font-family: 'Poppins', sans-serif;*/
}

.services-section .container {
    width: 98%;
    max-width: 100%;
    margin: auto;
}

/* Header */
.services-header {
    text-align: center;
    margin-bottom: 30px;
}

.services-header h1 {
    font-size: 26px;
    color: #006633;
    margin-bottom: 10px;
}

.services-header p {
    color: #555;
    max-width: 100%;
    margin: auto;
    line-height: 1.6;}
	
}



.service-readmore{
    margin-top:20px;
    background:#003c82;
    color:#fff;
    border:none;
    padding:12px 25px;
    border-radius:50px;
    cursor:pointer;
    transition:.3s;
}

.service-readmore:hover{
    background:#0056b3;
}

/* Popup */

.service-popup{
    display:none;
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    overflow:auto;
    padding:40px 15px;
}

.popup-content{
    background:#fff;
    max-width:800px;
    margin:auto;
    border-radius:20px;
    padding:30px;
    position:relative;
    animation:popupShow .3s ease;
}

.popup-content img{
    width:100%;
    border-radius:15px;
    margin-bottom:25px;
}

.popup-content h3{
    color:#003c82;
    margin-bottom:20px;
}

.popup-text{
    font-size:17px;
    line-height:30px;
    color:#444;
}

.popup-close{
    position:absolute;
    right:20px;
    top:15px;
    font-size:35px;
    cursor:pointer;
    color:#000;
}

@keyframes popupShow{
    from{
        transform:translateY(40px);
        opacity:0;
    }
    to{
        transform:translateY(0);
        opacity:1;
    }
}



/* =========================
 WHY CHOOSE US SECTION
========================= */

.whychoose-section{
    padding:100px 0;
    background:#f4f8fc;
    position:relative;
}

.why-header{
    text-align:center;
    margin-bottom:60px;
}

.why-header h2{
    font-size:48px;
    font-weight:700;
    color:#003e7d;
    margin-bottom:20px;
}

.why-header p{
    max-width:750px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
    color:#666;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* CARD */

.why-box{
    background:linear-gradient(135deg,#004c99,#002b58);
    border-radius:25px;
    padding:45px 35px;
    text-align:left;
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.why-box::before{
    content:'';
    position:absolute;
    top:-50px;
    right:-50px;
    width:140px;
    height:140px;
    background:rgba(255,255,255,0.05);
    border-radius:50%;
}

.why-box:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,62,125,0.25);
}

/* ICON */

.why-box .icon{
    width:85px;
    height:85px;
    border-radius:50%;
    background:rgba(255,255,255,0.12);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    margin-bottom:30px;
    backdrop-filter:blur(10px);
    border:1px solid rgba(255,255,255,0.15);
    transition:0.4s ease;
}

.why-box:hover .icon{
    transform:rotateY(180deg) scale(1.08);
    background:#ffc107;
}

/* TITLE */

.why-box h3{
    font-size:24px;
    font-weight:600;
    color:#fff;
    margin-bottom:18px;
    line-height:1.4;
}

/* TEXT */

.why-box p{
    color:rgba(255,255,255,0.82);
    font-size:16px;
    line-height:1.9;
    margin:0;
}

/* RESPONSIVE */

@media(max-width:991px){

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:767px){

    .why-grid{
        grid-template-columns:1fr;
    }

    .why-header h2{
        font-size:36px;
    }

    .why-box{
        padding:35px 25px;
    }

}



/*-----------------------------study-destinations----------------------------*/
.study-destinations {
  padding: 80px 30px;

  /* Top light color + bottom image */
  background: 
    linear-gradient(to bottom, #f5f7fb 50%, rgba(255,255,255,0)),
    url('../img/bg-shape.jpg') no-repeat bottom center;

  background-size: cover;
}


/* Card */
.destination-card {
  display: block;
  text-align: center;
  padding: 60px 25px 40px;
  border-radius: 15px;
  /*background: #fff;*/
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
  text-decoration: none;
  color: #333;
  position: relative; margin-bottom: 25px;
	background: #B99FCA;
background: radial-gradient(circle,rgba(185, 159, 202, 1) 1%, rgba(255, 255, 255, 1) 31%, rgba(148, 187, 233, 1) 100%);



}

/* FLAG */
.destination-card .flag {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, #0066ff, #00c6ff);
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.2);
  transition: 0.4s;
}

.destination-card .flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
}

/* ICON */
.destination-card .icon {
  font-size: 32px;
  color: #0066ff;
  margin-bottom: 15px;
  transition: 0.3s;
}

/* TEXT */
.destination-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
  font-weight: 600;
}

.destination-card span {
  display: inline-block;
  margin-top: 12px;
  padding: 8px 18px;
  /*font-size: 13px;*/
  font-weight: 500;
  color: #fff;
  border-radius: 30px;
  background: linear-gradient(135deg, #0066ff, #00c6ff);
  transition: 0.3s ease;
}

/* Hover effect */
.destination-card:hover span {
  background: linear-gradient(135deg, #0044cc, #0099cc);
  box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
  transform: translateY(-2px);
}

/* HOVER EFFECT */
.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
}

/* Flag animation */
.destination-card:hover .flag {
  transform: scale(1.1) rotate(5deg);
}

/* Icon animation */
.destination-card:hover .icon {
  transform: scale(1.2);
  color: #0044cc;
}

/* Optional glow effect */
.destination-card .flag::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 102, 255, 0.2);
  z-index: -1;
  filter: blur(10px);
  opacity: 0;
  transition: 0.4s;
}

.destination-card:hover .flag::after {
  opacity: 1;
}


.pdf-buttons{
    display:flex;
    gap:10px;
    justify-content:center;
    margin-top:15px;
    flex-wrap:wrap;
}

.pdf-btn{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:10px 15px;
    /*background:#e63946;*/
	background: linear-gradient(135deg, #0066ff, #00c6ff);
    color:#fff;
    border-radius:8px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:0.3s;
}

.pdf-btn:hover{
    background:#c1121f;
    color:#fff;
}

.pdf-btn i{
    font-size:16px;
}

/*------------------------------------*/
/* Scope only for this section */
#faq {
  background: #f5f7fb;
  padding: 80px 0;
}

/* Container */
#faq .faq-container {
  max-width: 900px;
}

/* Each Item */
#faq .faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: 0.3s ease;
  position: relative;
}

/* Hover */
#faq .faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* Question */
#faq .faq-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  padding-left: 30px;
  color: #333;
}

/* Icon left */
#faq .faq-icon {
  color: #f4b400;
  margin-right: 10px;
}

/* Toggle Icon (Right Arrow) */
#faq .faq-toggle {
  position: absolute;
  right: 20px;
  top: 22px;
  font-size: 18px;
  transition: 0.3s;
  color: #777;
}

/* Rotate when active */
#faq .faq-item.faq-active .faq-toggle {
  transform: rotate(90deg);
  color: #0066ff;
}

/* Answer */
#faq .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* Active Answer */
#faq .faq-item.faq-active .faq-content {
  max-height: 300px;
  margin-top: 15px;
}

/* Answer text */
#faq .faq-content p {
  margin: 0;
  /*font-size: 14px;*/
  color: #666;
  line-height: 1.6;
}


@media (max-width: 1200px) {
/* Question */
#faq .faq-item h3 {
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  padding-left: 30px;
  color: #333;
}	
	
}

@media (min-width: 1080px) {
	
.header .logo img {
  max-height: 100px;}	

 .hero h1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 30px;
    margin-top: 20px;
    margin-bottom: 0;  }
	
	.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}
	
}




/* Modal Overlay Background */
.vcg-modal-overlay {
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

/* Modal Card Box */
.vcg-modal-card {
  background: #ffffff;
  padding: 35px 30px 30px 30px;
  border-radius: 16px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  position: relative;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  animation: vcgModalScale 0.3s ease-in-out;
  font-family: inherit;
}

@keyframes vcgModalScale {
  from { transform: scale(0.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Close Button */
.vcg-modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #94a3b8;
  transition: color 0.2s;
}
.vcg-modal-close:hover {
  color: #1e293b;
}

/* Header Text */
.vcg-modal-header h3 {
  margin: 10px 0 5px 0;
  font-size: 22px;
  color: #1e293b;
  font-weight: 700;
}
.vcg-modal-header p {
  margin: 0;
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
}

.vcg-modal-icon {
  width: 48px;
  height: 48px;
  background: #eff6ff;
  color: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 18px;
}

/* QR Code Container */
.vcg-qr-container {
  margin: 20px 0 15px 0;
  background: #f8fafc;
  padding: 15px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: inline-block;
}
.vcg-qr-container img {
  width: 130px;
  height: 130px;
  display: block;
  margin: 0 auto 8px auto;
  border-radius: 6px;
}
.vcg-qr-label {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Divider */
.vcg-divider {
  position: relative;
  text-align: center;
  margin: 20px 0;
}
.vcg-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #e2e8f0;
}
.vcg-divider span {
  position: relative;
  background: #ffffff;
  padding: 0 12px;
  font-size: 12px;
  color: #94a3b8;
  font-weight: 500;
}

/* Form Group */
.vcg-form-group {
  display: flex;
  gap: 8px;
}
.vcg-form-group input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin: 0;
}
.vcg-form-group input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.vcg-form-group button {
  padding: 10px 20px;
  background-color: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}
.vcg-form-group button:hover {
  background-color: #1d4ed8;
}

/* Error Text */
.vcg-error-text {
  color: #dc2626;
  font-size: 13px;
  margin-top: 8px;
  margin-bottom: 0;
  text-align: left;
}