/*!
Theme Name: adivtheme
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: adivtheme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

adivtheme is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

 :root {
    --primary-color: #333;
    --secondary-color: #333;
    --background-color: #f1f1f1;
    --header-height: 80px;
    --nav-color: #fff;
    --link-hover-color: #c4e1ff;
    --hamburger-color: #fff;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

 * {
	margin:0;
	padding:0;
	font-family: "Roboto", sans-serif;
 }

 body {
	color: #333;
 }
.hero-section {
 	min-height: 100vh !important;
	display:flex !important;
    align-self: end !important;
}

.hero-section .e-con-inner {
	position:relative !important;
}

.hero-section .e-con-inner .elementor-element-d7683d2.e-grid.e-con-full.e-con.e-child{
	    position: absolute !important;
    /* width: 1140px; */
    bottom: 0 !important;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    background: #070e2e;
    backdrop-filter: blur(10px);
}

.content-relative {
 position:relative;
}

.h-700 {
	height: 700px !important;
}

.about-section .floating-content {
	background: #070e2e;
    padding: 30px;
    width: 300px;
    height: 300px;
    position: absolute;
    bottom: 0;
    right: -60px;
	border-radius: 5px;
}

.about-content {
	font-weight: normal;
	color: #333;
}

.about-content h2 ,.about-content h3,.col-title h2 {
	font-size: 46px;
	font-weight: bold;
	margin-bottom: 30px;
	color: #333;
	text-transform: capitalize;
}

.about-content h2 span ,.col-title span {
	display:block;
	text-transform: uppercase;
    font-size: 16px;
    font-weight: normal;
    color: #333;
	margin-bottom: 10px;
}

h1,h2,h3,h4,h5,h6 {
    text-transform: capitalize !important;
}

.btn-primary , .search-submit{
	display:inline-block;
	background-color: #ff0000 !important;
    text-decoration: none;
	color:#fff;
	padding: 10px 20px;
	border:0;
	border-radius: 3px;
	margin: 30px 0;
	transition: all 0.3s ease-in-out;
}

.btn-primary:hover ,.search-submit:hover{
	background-color: #070e2e !important;
}

.services-card {
	background-color: #fff;
	border-radius: 5px;
	padding: 30px !important;

}

.services-card h3{

	margin-bottom:15px;
}

.service-section.about .elementor-heading-title span {
    color: #bbb;
}

.img-box figure {
	width: 100% !important;
    height: 240px;
    overflow: hidden;
	border-radius: 5px;
}

.img-box {
	margin-bottom: 30px;
}

.img-box h3 {
	margin-bottom: 15px;
	color: #333
}

.img-box p {
	color: #333;
}

.img-box .elementor-image-box-content {
	padding: 30px;
	background-color: #fff;
	border-radius: 5px;
}

.img-box figure img{
	width:100% !important;
}

/* header */
.header {
    width: 100%;
	/* max-width: 90% !important; */
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
    background-color: #070e2e;
    backdrop-filter: blur(10px);
    box-shadow: var(--box-shadow);
}

.header .custom-logo-link img {
	height: 60px;
    width: auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Navigation Menu */
#primary-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

#primary-menu a {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
}

#primary-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

#primary-menu a:hover::after {
    width: 100%;
}

/* Hamburger Menu for Mobile */
.nav-toggle {
    display: none; /* Hide on desktop */
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--hamburger-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--hamburger-color);
    transition: transform 0.3s ease, top 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.nav-toggle.open .hamburger {
    background-color: transparent;
}

.nav-toggle.open .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.open .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile Navigation Menu */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #070e2e;
        padding: 80px 0 0 20px;
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
        transition: right 0.4s ease-in-out;
    }

    .nav.open {
        right: 0;
    }

    #primary-menu ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    #primary-menu a {
        font-size: 1.2rem;
    }

    .nav-toggle {
        display: block;
    }

    .header.scrolled .nav-toggle {
        /* Optional: Change hamburger color on scroll */
        color: #fff;
    }
}


/* header end */

/* footer */
.site-footer {
	padding: 80px 0;
	background-color: #070e2e;
	color: #fff;
}
.site-footer ul{
	list-style: none;
	padding-left: 0;
}
.site-footer h5 {
	margin-bottom: 30px;
}
.site-footer p,.site-footer a ,.site-footer li{
	color: #9BA2AD !important;
	transition: all 0.3s ease-in-out;
}
.mb-15{
	margin-bottom: 15px !important;
}
.site-footer a {
	display:inline-block;
	text-decoration: none;
	margin-bottom: 15px;
}
.site-footer a:hover {
	color: #fff !important;
}
/* footer end */

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

.about-img-wrapper.service .overlay-image {
    right:auto;
    left:0;
}

.about-img-wrapper .overlay-image {
    position:absolute;
    z-index:1;
    right:-60px;
    top:210px;
}

.about-img-wrapper .overlay-text {
    position:absolute;
    z-index:1;
    right:-60px;
    top:0;
    text-align: right;
    text-transform: uppercase;
}
.about-img-wrapper .overlay-text span{
    display:block;
    margin-bottom: 15px;
    font-size: 120px;
}
.elementor-element-65c9055 {
    text-align: left;
}

img {
    border-radius: 5px;
}

.gallery-box figure {
    height:220px;
    overflow:hidden;
    border-radius: 5px;
    padding: 15px !important;
}

.gallery-box figure img{
    width:100%;
    height: auto;
}

.fullwidthcontainer .e-con-inner {
    width:100%;
    max-width:100% !important;
}

.fullwidthcontainer {
    padding: 0 !important;
}

.fullwidthcontainer .elementor-widget-google_maps {
    width:100% !important;
}

.contact-section ul {
    list-style: none;
    padding-left:0;
}

.contact-section ul li{
    margin-bottom: 15px;
    font-size: 16px;
    color: #999;
}

.contact-section ul li a{
    color: #999;
}

.contact-section .col-title {
    margin-bottom: 30px;
}

.contact-form label {
    text-transform: uppercase;
    font-size: 14px;
}

.contact-form input ,.contact-form textarea{
    border: 0;
    background: #f1f1f1 !important;
    padding: 7px 15px;
    border-radius: 5px;
    margin-top: 15px;
}

.contact-form .wpcf7-submit {
    background: red !important;
    color: #fff;
}

.contact-form .wpcf7-submit:hover { 
    background-color: #070e2e!important;
}
.site-hero-section {
    background-size: cover;
    background-position: center center;
}
.site-hero-section .overlay-header{
    background-color: #070e2eb9;
    padding: 100px 0;
    color: #fff;
}

.section-common {
    padding: 60px 0;
}
.services-sec {
    background-color: #f1f1f1;
}
.mb-30 {
    margin-bottom: 30px;
}
.service-card-wrap .img-wrap {
    height: 250px;
    overflow: hidden;
    border-radius: 5px;
}
.service-card-wrap a {
    text-decoration: none;
    color: #333;
}
.service-card-wrap .content {
        margin: 30px;
    padding: 30px;
    background: #fff;
    border-radius: 5px;
    margin-top: -30px;
    z-index: 99;
    position: relative;
}

.align-center {
    align-self: center;
}

.text-right {
    text-align: right;
}
.site-taxonomy {
    
}
.site-taxonomy .no-results.not-found{
    padding: 200px 0;
    text-align: center;
    align-self: center;
    width:100%;
}
.site-taxonomy input {
    border: 0;
    background: #f1f1f1;
    padding: 7px 15px;
    border-radius: 5px;
}
.taxpage-header,.page-header {
    padding: 100px 60px;
    text-align: center;
    color: #fff;
    background: #0e012f;
}
article {
    padding: 60px;
}

.single-service article {
    padding-top:100px;
}

.tax-card {
    margin-bottom: 30px;
}

.tax-card a{
    text-decoration: none;
    color:#333;
}

.tax-card .col-md-4 {
    height: 300px;
    overflow: hidden;
    border-radius: 5px;
    padding:0;
    align-self: center;
}
.tax-card .col-md-8 {
    padding: 15px;
    color: #333;
    
}
.tax-card .col-md-8 .content-wrap{
    padding: 30px;
    background-color: #f1f1f1;
    border-radius: 5px;
}

.tax-card .rate {
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.sticky-phone {
    display: inline-block;
    position: fixed;
    padding: 15px;
    background: #0188ff;
    left: 15px;
    bottom: 15px;
    z-index: 999;
    border-radius: 20px;
}

.navigation.post-navigation {
    padding: 30px;

}

.navigation.post-navigation a{
    text-decoration: none;
    transition: all .3s ease-in-out;
    text-transform: uppercase;
    color: #333;
}

.navigation.post-navigation a:hover{
    color: #ff0000;
}

.sticky-whatsapp {
    display: inline-block;
    position: fixed;
    padding: 15px;
    background: #25D366;
    right: 15px;
    bottom: 15px;
    z-index: 999;
    border-radius: 20px;
}
.our-clients .e-con-inner .elementor-widget-image {
    height: 140px;
    line-height: 80px;
    padding: 30px;
    /* border: 2px solid red; */
    background: #f1f1f1;
    border-radius: 5px;
}

.rate {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
}


/* Responsive Mobile */

@media only screen and (max-width: 768px) {
	.about-section .floating-content {
		bottom: 0px;
		right: 0;
	}

    .text-right {
        text-align: left;
    }

	.h-700 {
		height: 580px !important;
	}
	.elementor-element-16c8223  {
		padding: 15px !important;
	}

	.service-section,.elementor-element-dcb2b56 {
		height: 1580px !important;
	}

	.service-section .service-content,.elementor-element-1e03a96 {
		padding: 0 !important;
	}

	.service-section .res-height {
		height: 500px !important;
	}

    .elementor-element-d7d1c4f {
		text-align: left!important;
	}

    .about-img-wrapper .overlay-text {
        right: 0px;
        top: -33px;
    }
    .about-img-wrapper .overlay-image {
        width:300px;
        right: -10px;
        top: 230px;
    }

    .elementor-element-6bca8fc {
        padding-left: 0 !important;
    }

    #primary-menu {
        display:block;
    }
     #primary-menu li{
        padding: 15px;
     }

     .works-section .e-con-inner{
        height:7760px !important;
     }
}