/* 
* Theme Name: Adani Infra 
* Author: Adani Infra 
* (C) 2024 Adani Infra is distributed under the terms of the GNU GPL.
*/
/* ==============================
   Fonts
================================= */
@font-face {
    font-family: 'Adani';
    src: url('/fonts/AdaniInfrastructure/Adani-Bold.woff2') format('woff2'),
        url('/fonts/AdaniInfrastructure/Adani-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Adani';
    src: url('/fonts/AdaniInfrastructure/Adani-ExtraLight.woff2') format('woff2'),
        url('/fonts/AdaniInfrastructure/Adani-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Adani';
    src: url('/fonts/AdaniInfrastructure/Adani-Medium.woff2') format('woff2'),
        url('/fonts/AdaniInfrastructure/Adani-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Adani';
    src: url('/fonts/AdaniInfrastructure/Adani-Light.woff2') format('woff2'),
        url('/fonts/AdaniInfrastructure/Adani-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Adani';
    src: url('/fonts/AdaniInfrastructure/Adani-Regular.woff2') format('woff2'),
        url('/fonts/AdaniInfrastructure/Adani-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Adani';
    src: url('/fonts/AdaniInfrastructure/Adani-SemiBold.woff2') format('woff2'),
        url('/fonts/AdaniInfrastructure/Adani-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
/* ==============================
   Root Variables (Fluid Defaults)
================================= */
:root {
   /* --theme-color: linear-gradient(90deg, #5565AD 0%, #87439A 100%);
    --light-theme-color: linear-gradient(90deg, #8FA0E6 0%, #C08BD9 100%);*/
    /* --theme-color: linear-gradient(90deg, #0092C8 0%, #6B6FD6 100%); */
	--theme-color: linear-gradient(90deg, #8f2e8d 0%, #722270 100%);
    --light-theme-color: linear-gradient(90deg, #0092C8 0%, #6B6FD6 100%);
    --body-color: #fff;
    --white-color: #fff;
    --black-color: #000;
    --heading-color: #393939;
    --banner-font: 400 75px / 80px "Adani", sans-serif;
    --heading-font: 400 45px / 50px "Adani", sans-serif;
    --sub-heading-font: 400 20px / 25px "Adani", sans-serif;
    --body-font: 400 16px / 23px "Adani", sans-serif;
    --btn-font: 400 1rem / 1rem "Adani", sans-serif;
    --nav-font: 400 1rem / 1.1875 "Adani", sans-serif;
    --footer-font: 500 0.8125rem / 2 "Adani", sans-serif;
}
/* ==============================
   Reset & Global Defaults
================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    scroll-behavior: smooth;
}
body {
    background-color: var(--body-color);
    font: var(--body-font);
    color: var(--black-color);
}
/* ==============================
   Typography
================================= */
h1 {
    font: var(--banner-font);
    letter-spacing: -0.04em;
}
h2 {
    font: var(--heading-font);
    color: var(--heading-color)
}
h3 {
    font: var(--sub-heading-font);
}
p {
    letter-spacing: -0.32px;
}
p,
a {
    font: var(--body-font);
    text-decoration: none;
    color: var(--heading-color);
}
a:hover {
    color: var(--heading-color);
}
/* ==============================
   Forms & Buttons
================================= */
.form-control,
.form-select,
button {
    transition: 0.3s ease-in-out;
    background: none;
    box-shadow: none;
    outline: 0;
}
.form-control:focus,
.form-select:focus,
button:focus {
    border: 0;
}
/* ==============================
   Scrollbar & Selection
================================= */
::-webkit-scrollbar {
    width: 0.8rem;
}
::-webkit-scrollbar-track {
    background: var(--theme-color);
}
::-webkit-scrollbar-thumb {
    background: var(--white-color);
}
/* Gradient selection */
::selection {
    color: #ffffff;
    background-color: #3E64AF;
}
/* ==============================
   Button
================================= */
.main-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    outline: none;
    border: none;
    background: transparent;
    text-decoration: none;
    font: var(--btn-font);
    padding: 0;
    height: 2.5rem;
    width: auto;
}
/* Circle (initial small shape) */
.main-btn .circle {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50px;
    background: var(--theme-color);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
    z-index: 1;
    overflow: hidden;
}
/* Arrow */
.main-btn .circle .icon.arrow {
    position: absolute;
    top: 50%;
    left: 0.75rem;
    width: 0.5rem;
    /* short line before hover */
    height: 0.125rem;
    background: unset;
    transform: translateY(-50%);
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}
.main-btn .circle .icon.arrow::before {
    content: "";
    position: absolute;
    top: -0.12rem;
    right: 0;
    width: 0.4rem;
    height: 0.4rem;
    border-top: 0.125rem solid var(--white-color);
    border-right: 0.125rem solid var(--white-color);
    transform: rotate(45deg);
    left: 0.2rem;
}
/* Text */
.main-btn .button-text {
    position: relative;
    z-index: 2;
    color: #515151;
    padding: 0.75rem 1.25rem 0.75rem 3rem;
    white-space: nowrap;
    transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}
/* ==============================
     Hover Effect
  ================================= */
.main-btn:hover .circle {
    width: 100%;
    border-radius: 2rem;
}
.main-btn:hover .circle .icon.arrow {
    width: 1.5rem;
    /* full arrow line */
    left: calc(100% - 2.3rem);
    /* moves to right end */
}
.main-btn:hover .button-text {
    color: var(--white-color);
    padding-right: 2.5rem;
    /* keep space for arrow */
}
.main-btn:hover .circle .icon.arrow:before {
    left: unset;
    right: 10px;
}
/* ==============================
     Hover Effect
  ================================= */
.main-btn:hover .circle {
    width: 100%;
    border-radius: 2rem;
}
.main-btn:hover .circle .icon.arrow {
    width: 1.5rem;
    /* full arrow line */
    left: calc(100% - 2.3rem);
    /* moves to right end */
}
.main-btn:hover .button-text {
    color: var(--white-color);
    padding-right: 2.5rem;
    /* keep space for arrow */
}
/* ==============================
   Utilities
================================= */
.section-spacing {
    padding: clamp(4rem, 1rem + 2vw, 4rem) 0 0;
}
.container-fluid {
    padding: 0;
    margin: 0;
    overflow: hidden;
}
picture {
    display: block;
}
/* ==============================
   Hover Effects
================================= */
.zoom-hover picture {
    position: relative;
    overflow: hidden;
    display: block;
}
.zoom-hover picture img {
    transition: 1.5s cubic-bezier(0, 0, 0.2, 1);
}
.zoom-hover:hover picture img {
    transform: scale(1.1);
}
/* ==============================
   Loader
================================= */
.loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 999999999;
    background: #fff url("/images/AdaniInfrastructure/logo-black.svg") 50% 50% no-repeat;
}
/* ==============================
   Swiper Custom Dots
================================= */
.swiper-wrapper {
    padding-bottom: 3rem;
}
.swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 20px;
    /* optional spacing */
}
/* Default bullet (inactive) */
.swiper-pagination-bullet {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #C4C4C4;
    ;
    opacity: 1;
    /* keep full opacity */
    cursor: pointer;
    transition: all 0.3s ease;
}
/* Active bullet with animated gradient */
.swiper-pagination-bullet-active {
    width: 33px !important;
    height: 5px !important;
    border-radius: 20px !important;
    background: var(--theme-color);
    background-size: 300% 300%;
    animation: gradientMove 3s ease infinite;
}
/* Gradient animation keyframes */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
/* ==============================
   Navbar
================================= */
header {
    position: fixed;
    transition: top .6s ease-in-out;
    z-index: 999;
    width: 100%;
    margin-top: 1rem;
}
#navigation_bar .black-logo {
    display: none;
}
#navigation_bar.nav-down .black-logo {
    display: block;
}
#navigation_bar.nav-down .logo {
    display: none;
}
#navigation_bar .navbar .navbar-brand picture {
    width: 244;
    height: 61px;
    display: inline-block;
}
#navigation_bar .navbar-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding-top:1.5rem;
}
#navigation_bar .navbar .nav-link {
    position: relative;
    font: var(--nav-font);
    color: var(--white-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.4s ease;
    white-space: nowrap;
}
#navigation_bar .navbar .nav-link:hover,
#navigation_bar.nav-down .navbar .nav-link:hover,
#navigation_bar .navbar .nav-link.active {
    background: var(--theme-color);
    transform: translateY(-2px);
    background-size: 200% 200%;
    animation: gradientMove 3s ease infinite;
    color: var(--white-color) !important;
}
.nav-down {
    top: 0;
    background: var(--white-color);
    margin-top: 0;
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.4);
}
#navigation_bar.nav-down .navbar .nav-link {
    color: var(--black-color) !important;
}
.nav-up {
    top: -140px;
    background-color: var(--white-color);
}
#navigation_bar.nav-down .navbar .nav-link:hover,
#navigation_bar.nav-down .navbar .nav-link.active {
    color: var(--white-color);
}
#navigation_bar .dropdown {
    position: unset;
}
#navigation_bar .dropdown-menu {
    max-width: 1280px;
    left: 0 !important;
    right: 0;
    width: 100%;
    margin: auto;
    top: 70px !important;
     /*top: 84px !important;*/
    border: 0;
    border-radius: 0;
    padding: 4rem;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
#navigation_bar .header-border {
    display: block;
    height: 100%;
    width: 2px;
    background: var(--theme-color);
    text-align: center;
    margin: auto;
    position: absolute;
    top: 0;
    left: 3%;
}
#navigation_bar .project-inner-col picture {
    display: block;
    height: 104px;
    width: 160px;
}
#navigation_bar .project-inner-col h3 {
    font: var(--body-font);
    margin-top: 10px;
}
#navigation_bar .services-dropdown-menu {
    max-width: fit-content;
}
#navigation_bar .services-dropdown-menu .header-border {
    left: 8%;
}
.social-media {
    width: 50%;
    margin: 1rem;
}
.footer-links {
    display: flex;
    justify-content: space-around;
    /*justify-content: space-between;*/
}
.footer-links .footer-col h5,
.footer-links .footer-col h5 a {
    font: 500 1.1rem / 1.75rem "Adani", sans-serif !important;
    color: var(--heading-color);
}
.footer-links .footer-col ul li a {
    font: var(--footer-font);
    color: #747D84;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
}
.useful-links ul {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}
.footer-bottom span,
.footer-bottom a {
    font: var(--footer-font);
    color: rgb(0 0 0 / 50%);
}
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    /*width: 60px;
    height: 60px;*/
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
}
#back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}
#back-to-top:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}
/* ==============================
   Navbar dropdown
================================= */
@media (min-width: 1200px) {
    .navbar .dropdown:hover > .dropdown-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
  }
  .navbar .dropdown .dropdown-menu {
    margin-top: 0 !important;
    top: 100% !important; 
    transform: none !important;
    pointer-events: auto; 
    z-index: 2000; 
  }
    .navbar .dropdown-toggle:focus,
    .navbar .dropdown-toggle:focus-visible {
        outline: 0 !important;
        box-shadow: none !important;
    }
}
/* ==============================
   Navbar dropdown scrolling
================================= */
.project-inner-row {
    max-height: 350px;      
    overflow-y: auto;       
    overflow-x: hidden;     
    padding-right: 10px;    
}
.project-inner-row::-webkit-scrollbar {
    width: 2px;
}
.project-inner-row::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
.project-inner-row::-webkit-scrollbar-track {
    background: var(--theme-color);
}
.dropdown-menu {
    pointer-events: auto !important;
}
/*New Css*/
li.nav-item.dropdown.left-menu-box h2.card-title {
    font-size: 36px;
    line-height: 45px;
}
.contact-us .iti {
    position: relative;
    display: inline-block;
    width: 100%;
}
#thankyouModal .modal-body img {
    margin-bottom: 15px;
    width: 80px;
}