/*--------------------------------------------------------------------- 
File Name: style.css 
---------------------------------------------------------------------*/


/*--------------------------------------------------------------------- 
import Fonts 
---------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900&display=swap');

/*****---------------------------------------- 1) 
 2) font-family: 'Poppins', sans-serif;
 ----------------------------------------*****/


/*--------------------------------------------------------------------- 
import Files 
---------------------------------------------------------------------*/

@import url(animate.min.css);
@import url(normalize.css);
@import url(icomoon.css);
@import url(font-awesome.min.css);
@import url(owl.carousel.min.css);
@import url(nice-select.css);

/*--------------------------------------------------------------------- 
basic 
---------------------------------------------------------------------*/
:root {
     --primary-color: #264A8B;
     --secondary-color: #B0C8F7;
     --white-color: #fff;
     --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.1);
     --hover-color: #0856e7;
     --whitesmoke-color: whitesmoke;
     --black-color: #000;
     --heading-font: clamp(2rem, 2.5vw, 3rem);
     --lead-font: clamp(1rem, 1.2vw, 2rem);
     --lead-color: #555;
}


a {
     text-decoration: none;
     color: inherit;
}





/* ---------------- ROOT ----------------------- */


* {
     box-sizing: border-box !important;
}

.container {
     max-width: 1170px;
}

html {
     scroll-behavior: smooth;
}

body {
     color: #666666;
     font-size: 14px;
     font-family: 'Roboto', sans-serif;
     line-height: 1.80857;
     font-weight: normal;
}

a {
     color: #1f1f1f;
     text-decoration: none !important;
     outline: none !important;
     -webkit-transition: all .3s ease-in-out;
     -moz-transition: all .3s ease-in-out;
     -ms-transition: all .3s ease-in-out;
     -o-transition: all .3s ease-in-out;
     transition: all .3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
     letter-spacing: 0;
     font-weight: normal;
     position: relative;
     padding: 0;
     font-weight: normal;
     line-height: normal;
     color: #111111;
     margin: 0
}

h1 {
     font-size: 24px;
}

h2 {
     font-size: 22px;
     font-family: 'Poppins', sans-serif;
}

h3 {
     font-size: 18px;
}


*,
*::after,
*::before {
     -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
     box-sizing: border-box;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
     color: var(--primary-color);
     text-decoration: none !important;
     opacity: 1
}

h1,
h2,
h3,
h4,
h5,
h6 {
     color: var(--white-color);
}




button:focus {
     outline: none;
}

ul,
li,
ol {
     margin: 0px;
     padding: 0px;
     list-style: none;
}

p {
     margin: 0px;
     font-weight: 400;
     font-size: 17px;
     line-height: 30px;
}

a {
     color: #222222;
     text-decoration: none;
     outline: none !important;
}

a,
.btn {
     text-decoration: none !important;
     outline: none !important;
     -webkit-transition: all .3s ease-in-out;
     -moz-transition: all .3s ease-in-out;
     -ms-transition: all .3s ease-in-out;
     -o-transition: all .3s ease-in-out;
     transition: all .3s ease-in-out;
}

img {
     max-width: 100%;
     height: auto;
}

:focus {
     outline: 0;
}

.form-control:focus {
     border-color: var(--white-color)fff !important;
     box-shadow: 0 0 0 .2rem rgba(255, 255, 255, .25);
}

.navbar-form input {
     border: none !important;
}

blockquote {
     margin: 20px 0 20px;
     padding: 30px;
}

button {
     border: 0;
     margin: 0;
     padding: 0;
     cursor: pointer;
}

.full {
     float: left;
     width: 100%;
}

.full {
     width: 100%;
     float: left;
     margin: 0;
     padding: 0;
}

.titlepage {
     padding-bottom: 60px;
}

.titlepage h2 {
     font-size: 40px;
     color: var(--primary-color);
     line-height: 40px;
     font-weight: bold;
     padding: 0;
     display: inline-block;
     text-transform: uppercase;
}

.blue_light {
     color: var(--secondary-color);
}

.d_flex {
     display: flex;
     align-items: center;
     flex-wrap: wrap;
}

.read_more {
     font-size: 17px;
     background-color: var(--primary-color);
     color: var(--white-color);
     width: 100%;
     max-width: 164px;
     text-align: center;
     display: inline-block;
     transition: ease-in all 0.5s;
     font-weight: 500;
     border-radius: 50px;
     height: 50px;
     line-height: 50px;
     text-transform: uppercase;
}

.read_more:hover {
     background: var(--hover-color);
     color: var(--white-color);
     transition: ease-in all 0.5s;
}

.text_align_left {
     text-align: left;
}

.text_align_right {
     text-align: right;
}

.text_align_center {
     text-align: center;
}


/**-- heading section --**/

/* know more button  */
.know_more_btn {
     align-items: center;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-top: 1rem;
     padding: 0.4rem 1rem;
     color: var(--primary-color);
     background-color: var(--secondary-color);
     border-radius: 10px;
     transition: 0.3s ease-in-out all;
}

.know_more_btn:hover {
     background-color: var(--hover-color);
     color: white;
}

/*---------------------------- preloader area ----------------------------*/

.loader_bg {
     position: fixed;
     z-index: 9999999;
     background: var(--white-color);
     width: 100%;
     height: 100%;
}

.loader {
     height: 100%;
     width: 100%;
     position: absolute;
     left: 0;
     top: 0;
     display: flex;
     justify-content: center;
     align-items: center;
}

.loader img {
     width: 280px;
}


/* =================================================================================
                                      NAVBAR 
 ==================================================================================== */

/* ================================= Top Bar  ============================= */

.top-bar {
     background-color: var(--primary-color);
     font-size: 14px;
     transition: top 0.3s ease-in-out;
     height: 5vh;
     display: flex;
     justify-content: center;
     align-items: center;
     position: relative;
     z-index: 1000;
     color: var(--primary-color);
}

#topBar i {
     color: var(--primary-color);
     font-size: clamp(1rem, 1.3vw, 1.5rem);
}

.top-bar .info {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 5px 15px;
     font-size: 1.07rem;
     font-size: clamp(1rem, 1.1vw, 1.4rem);
}

#top-email-info {
     margin-left: 4rem;
}

.top-bar.hide {
     top: -50px;
}

@media (min-width:1200px) {
     #top-email-info {
          margin-left: 10rem;
     }
}

@media (max-width:768px) {
     #top-email-info {
          margin-left: 5rem;
     }
}

/* ========================== TOP NAVBAR ENDS ================================ */

header {
     background-color: var(--primary-color);
     /* background-color: transparent; */
     position: sticky;
     top: 0;
     z-index: 999;
}

.main-navbar .navbar-nav .nav-link {
     color: var(--white-color);
}

.main-navbar .navbar-brand {
     color: var(--white-color);
     font-weight: bold;
}

.main-navbar .nav-link:hover {
     color: #ffc107;
}

.navbar-brand img {
     width: 50px;
     height: 50px;
     object-fit: contain;
}

/* For smooth transition of top bar */
.top-bar {
     position: relative;
     z-index: 1000;
}

#brand-name {
     margin: 0 0.5rem;
     font-weight: 500;
     font-size: clamp(1.1rem, 1.4vw, 1.7rem);
}

.nav-link {
     padding: 5px 25px;
     border-radius: 20px;
     margin: 0 5px;
     transition: all 0.3s ease;
}

.nav-link:hover {
     color: var(--primary-color) !important;
     background-color: var(--whitesmoke-color);
     font-weight: 600;
}

.nav-link.active {
     color: var(--primary-color) !important;
     background-color: var(--whitesmoke-color);
     font-weight: 600;
}

.dropdown-item.active {
     background-color: var(--secondary-color) !important;
     color: var(--primary-color) !important;
     font-weight: 600;
}

.custom-header {
     background-color: var(--white-color) !important;
     /* background-color: transparent; */
     box-shadow: var(--shadow-soft);
     height: 13vh;
}

#rate-us {
     border-radius: 5px;
     border: 2px solid var(--secondary-color);
     padding: 5px 10px;
     font-weight: 600;
     font-size: 1.02rem;
     color: var(--secondary-color);
     transition: all 0.3s ease;
}

#rate-us:hover {
     background-color: var(--secondary-color);
     color: var(--primary-color);
}

.navbar-brand,
.nav-link {
     color: var(--primary-color) !important;
     font-weight: 500;
     font-size: clamp(0.9rem, 1vw, 1.4rem);
}

.dropdown-menu {
     background-color: var(--whitesmoke-color);
}

.dropdown-item {
     color: var(--primary-color) !important;
     font-weight: 600;
     transition: all 0.3s ease;
}

.dropdown-item:hover {
     background-color: var(--secondary-color);
}

/** end header **/


/** banner section **/


.relative {
     position: inherit;
     left: 0;
     right: 0;
     text-align: left;
     padding: 0;
     bottom: 0;
}

.carousel-item {
     height: 100%;
     width: 100%;
}

.dream .read_more {
     border: none;
     background: var(--primary-color);
     color: var(--white-color);
     border-radius: 15px;
     margin: 1rem 0.5rem;
     transition: 0.3s ease-in-out all;
}

.dream .read_more:hover {
     background: var(--hover-color);
     color: var(--white-color);
}

.dream .read_more:focus {
     box-shadow: none;
}


.dream h1 {
     margin: 0;
     padding: 0;
     font-size: clamp(2rem, 3.5vw, 3.2rem);
     /* responsive size */
     /* line-height: 1.3; */
     color: var(--primary-color);
     font-weight: 800;
     padding-bottom: 20px;
     text-transform: capitalize;
     letter-spacing: 1px;
}

.dream p {
     font-size: clamp(1rem, 1.3vw, 1.15rem);
     /* balanced for hero section */
     line-height: 1.7;
     color: var(--primary-color);
     /* fallback if variable missing */
     margin-bottom: 25px;
     max-width: 90%;
     font-weight: 400;
}


.dream_img figure {
     margin: 0;
}

#banner1 .carousel-indicators {
     display: none;
}

#banner1 .carousel-control-next:focus,
#banner1 .carousel-control-next:hover,
#banner1 .carousel-control-prev:focus,
#banner1 .carousel-control-prev:hover {
     background-color: var(--hover-color);
     color: var(--white-color);
}


/** end banner section **/


/** domain **/

.domain {
     background: var(--whitesmoke-color);
     padding-top: 90px;
}

.searchbar {
     height: 70px;
     background-color: var(--whitesmoke-color);
     border-radius: 50px;
     padding: 10px 30px;
     display: flex;
     box-shadow: 0 0 59px rgba(30, 30, 29, 0.09);
}

.search_input {
     color: #afb4cc;
     border: 0;
     outline: 0;
     background: var(--whitesmoke-color);
     width: 100%;
     line-height: 40px;
     font-size: 17px;
}

.search_icon {
     display: flex;
     justify-content: center;
     align-items: center;
     color: var(--primary-color);
     font-size: 20px;
}

.search_icon:hover {
     color: var(--primary-color);
}

.domain_bg {
     background-color: var(--whitesmoke-color);
     border-radius: 5px;
     padding: 50px 30px;
     box-shadow: 0 0 59px rgba(30, 30, 29, 0.07);
     margin-top: 30px;
}

.domain-price_main {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
}

.domain-price span {
     font-size: 17px;
     color: #272727;
     line-height: 25px;
     text-transform: uppercase;
     display: block;
}

.domain-price strong {
     font-size: 17px;
     color: var(--primary-color);
     line-height: 22px;
     text-transform: uppercase;
}

.domain_bg .read_more {
     margin: 0 auto;
     display: block;
     margin-bottom: -70px;
     margin-top: 20px;
     ;
}


/** end domain **/

/** services card **/

/* ------------- PROCESS ------------------------- */

/* Process Section */
.process {
     padding: 1rem 2rem 5rem 2rem;
     background-color: var(--whitesmoke-color);
}

.process-container {
     max-width: 1200px;
     margin: 0 auto;
}

.process-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
     margin-top: 60px;
}

.process-step {
     text-align: center;
     padding: 40px 20px;
     background-color: var(--white-color);
     border-radius: 20px;
     transition: all 0.3s ease;
     position: relative;
}

.process-step:hover {
     transform: translateY(-10px);
     box-shadow: 0 0 10px var(--secondary-color);
}

.process-number {
     width: 60px;
     height: 60px;
     background-color: var(--secondary-color);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
     font-weight: bold;
     margin: 0 auto 20px;
     color: var(--primary-color);
}

.process-step:hover .process-number {
     background: var(--primary-color);
     color: var(--white-color);
     transform: scale(1.1);
}



.process-step h4 {
     font-size: 20px;
     font-weight: 700;
     margin-bottom: 15px;
     color: var(--primary-color);
}

.process-step p {
     font-size: var(--para-font);
     opacity: 0.8;
     color: var(--lead-color);
}



.container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
}

/* Hero Section */
.hero-section {
     background: linear-gradient(135deg, var(--primary-color) 0%, var(--hover-color) 100%);
     color: var(--white-color);
     padding: 80px 0;
     text-align: center;
     position: relative;
}

.hero-section::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="0,0 1000,100 1000,0"/></svg>');
     background-size: cover;
}

.hero-content {
     position: relative;
     z-index: 2;
}

.hero-title {
     font-size: var(--heading-font);
     font-weight: 700;
     margin-bottom: 20px;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
     font-size: var(--lead-font);
     margin-bottom: 30px;
     opacity: 0.9;
}

.hero-stats {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 30px;
     margin-top: 50px;
}

.stat-item {
     text-align: center;
}

.stat-number {
     font-size: 2.5rem;
     font-weight: bold;
     color: var(--secondary-color);
     display: block;
}

.stat-label {
     font-size: 1rem;
     opacity: 0.9;
     margin-top: 5px;
}

/* Services Grid */
.services-section {
     padding: 80px 0;
     background: var(--whitesmoke-color);
}

.section-title {
     text-align: center;
     font-size: var(--heading-font);
     color: var(--primary-color);
     margin-bottom: 20px;
     font-weight: 700;
}

.section-subtitle {
     text-align: center;
     font-size: var(--lead-font);
     color: var(--lead-color);
     margin-bottom: 60px;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
}

.services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 20px;
     margin-top: 50px;
}

.service-card {
     background: var(--white-color);
     border-radius: 15px;
     padding: 40px 30px;
     box-shadow: var(--shadow-soft);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
}

.service-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 5px;
     background: var(--primary-color);
     transform: scaleX(0);
     transition: transform 0.3s ease;
}

.service-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card:hover::before {
     transform: scaleX(1);
}

.service-icon {
     width: 80px;
     height: 80px;
     background: var(--secondary-color);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 25px;
     font-size: 2rem;
     color: var(--primary-color);
     transition: all 0.3s ease;
}

.service-card:hover .service-icon {
     background: var(--primary-color);
     color: var(--white-color);
     transform: scale(1.1);
}

.service-title {
     font-size: 1.5rem;
     font-weight: 600;
     color: var(--primary-color);
     margin-bottom: 15px;
}

.service-description {
     color: var(--lead-color);
     margin-bottom: 20px;
     line-height: 1.6;
     text-align: justify;
}

.service-features {
     list-style: none;
}

.service-features li {
     padding: 8px 0;
     color: var(--lead-color);
     position: relative;
     padding-left: 25px;
     transition: color 0.3s ease;
}

.service-features li::before {
     content: '✓';
     position: absolute;
     left: 0;
     top: 8px;
     color: var(--primary-color);
     font-weight: bold;
}

.service-card:hover .service-features li {
     color: var(--black-color);
}

/* ===================================================================================
                                           GALLERY 
 ============================================================================ */

.gallery-preview {
     background-color: var(--whitesmoke-color);
     width: 100%;
     min-height: 130vh;
     height: auto;
     text-align: center;
     margin: 0 auto;
}

.gallery-preview h1 {
     text-align: center;
     margin-bottom: 40px;
     color: var(--primary-color);
     font-weight: 600;
     padding: 12vh 1rem 0 1rem;
     margin-bottom: 1rem;
     font-size: var(--heading-font);
}

.gallery-preview .lead {
     text-align: center;
     font-size: var(--lead-font);
     color: var(--lead-color);
     font-weight: 400;
     margin-bottom: 6rem;
}

.masonry-gallery {
     column-count: 3;
     column-gap: 20px;
     max-width: 1100px;
     margin: 20px auto;
}

.masonry-item {
     position: relative;
     margin-bottom: 20px;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: var(--shadow-soft);
     break-inside: avoid;
}

.masonry-item img {
     width: 100%;
     display: block;
     transition: all 0.3s ease;
}

.overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(0, 0, 0, 0.5);
     color: var(--white-color);
     display: flex;
     align-items: center;
     justify-content: center;
     opacity: 0;
     transition: opacity 0.3s ease;
     font-size: 1.2rem;
     font-weight: 500;
     text-align: center;
     padding: 10px;
}

.masonry-item:hover img {
     opacity: 0.6;
     transform: scale(1.03);
}

.masonry-item:hover .overlay {
     opacity: 1;
}

.view-all-btn {
     margin-top: 40px;
     padding: 0.8rem 1.4rem;
     background-color: var(--primary-color);
     color: var(--white-color);
     text-decoration: none;
     font-weight: 600;
     border-radius: 8px;
     transition: all 0.3s ease;
     display: inline-block;
     border: none;
}

.view-all-btn:hover {
     background-color: var(--hover-color);
     transform: translateY(-2px);
     text-decoration: none;
     color: var(--white-color);
}

/* ENHANCED RESPONSIVE GALLERY SECTION */

/* Desktop Large (1200px+) */
@media (min-width: 1200px) {
     .gallery-preview {
          padding: 0 3rem 4rem 3rem;
     }

     .gallery-preview h1 {
          padding: 12vh 1rem 0 1rem;
     }

     .gallery-preview .lead {
          margin-bottom: 4rem;
     }

     .masonry-gallery {
          max-width: 1200px;
          column-gap: 25px;
     }

     .view-all-btn {
          padding: 0.7rem 0.7rem;
          font-size: 1rem;
          margin-top: 0;
     }
}

/* Desktop Medium (993px - 1199px) */
@media (max-width: 1199px) and (min-width: 993px) {
     .gallery-preview {
          padding: 0 2rem 3rem 2rem;
     }

     .gallery-preview h1 {
          padding: 8vh 1rem 0 1rem;
     }

     .masonry-gallery {
          margin: 20px 1rem;
     }
}

/* Large Tablets (769px - 992px) */
@media (max-width: 992px) and (min-width: 769px) {
     .gallery-preview {
          padding: 0 2rem 3rem 2rem;
     }

     .gallery-preview h1 {
          padding: 6vh 1rem 0 1rem;
          font-size: 2.2rem;
     }

     .gallery-preview .lead {
          font-size: 1.2rem;
          margin-bottom: 3rem;
     }

     .masonry-gallery {
          column-count: 3;
          margin: 15px 1rem;
          padding-bottom: 2rem;
     }

     .view-all-btn {
          padding: 0.7rem 1.3rem;
          font-size: 1rem;
     }
}

/* Small Tablets (577px - 768px) */
@media (max-width: 768px) and (min-width: 577px) {
     .gallery-preview {
          padding: 0 1.5rem 2.5rem 1.5rem;
     }

     .gallery-preview h1 {
          padding: 5vh 1rem 0 1rem;
          font-size: 2rem;
     }

     .gallery-preview .lead {
          font-size: 1.1rem;
          margin-bottom: 2.5rem;
          padding: 0 1rem;
     }

     .masonry-gallery {
          column-count: 2;
          margin: 15px 0.5rem;
          padding-bottom: 1.5rem;
          column-gap: 15px;
     }

     .view-all-btn {
          padding: 0.6rem 1.1rem;
          font-size: 0.95rem;
     }
}

/* Mobile (320px - 576px) */
@media (max-width: 576px) {
     .gallery-preview {
          padding: 2rem 1rem 10rem 1rem;
     }

     .gallery-preview h1 {
          padding: 4vh 0.5rem 0 0.5rem;
          font-size: 1.8rem;
     }

     .gallery-preview .lead {
          font-size: 1rem;
          margin-bottom: 2rem;
          padding: 0 0.5rem;
     }

     .masonry-gallery {
          column-count: 1;
          margin: 10px 0;
     }

     .masonry-item {
          margin-bottom: 15px;
          border-radius: 10px;
     }

     .overlay {
          font-size: 1rem;
     }

     .view-all-btn {
          padding: 0.6rem 1rem;
          font-size: 0.9rem;
          margin-top: 0px;
     }
}

/* Extra Small Mobile (280px - 320px) */
@media (max-width: 320px) {
     .gallery-preview {
          padding: 2rem 0.8rem 5rem 0.8rem;
     }

     .gallery-preview h1 {
          font-size: 1.6rem;
     }

     .view-all-btn {
          padding: 0.5rem 0.8rem;
          font-size: 0.85rem;
     }
}

/* ------------------- Why Choose Us ------------------- */


/* ------------------ WHY CHOOSE US --------------------------------- */
/* About Section */
.about {
     padding: 1.5rem;
     background-color: var(--primary-color);
     background: url(section-bg2.jpg);
}

.about-content {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
}

.about-text h2 {
     font-size: 42px;
     font-weight: 800;
     margin-bottom: 30px;
     background-color: var(--primary-color);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
}

.about-text p {
     font-size: 18px;
     margin-bottom: 25px;
     opacity: 0.8;
     color: var(--primary-color);
}

.about-features {
     list-style: none;
     padding: 0;
     margin-top: 30px;
}


.about-features i {
     font-size: 2.2rem;
     margin-right: 1rem;
     color: var(--primary-color);
}

.about-features li {
     padding: 12px 0;
     position: relative;
     font-size: 16px;
     color: var(--primary-color);
}


.about-image {
     position: relative;
     background-color: white;
     border-radius: 15px;

}

/* CTA Section */
.cta-section {
     padding: 80px 0;
     background: var(--primary-color);
     color: var(--white-color);
     text-align: center;
}

.cta-title {
     font-size: var(--heading-font);
     margin-bottom: 20px;
     font-weight: 700;
}

.cta-description {
     font-size: var(--lead-font);
     margin-bottom: 40px;
     opacity: 0.9;
}

.cta-button {
     display: inline-block;
     background: var(--white-color);
     color: var(--primary-color);
     padding: 15px 40px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 600;
     font-size: 1.1rem;
     transition: all 0.3s ease;
     box-shadow: var(--shadow-soft);
}

.cta-button:hover {
     background: var(--secondary-color);
     transform: translateY(-3px);
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Enhanced responsive design for new sections */
@media (max-width: 768px) {
     .container {
          padding: 0 15px;
     }

     .hero-section {
          padding: 60px 0;
     }

     .services-grid {
          grid-template-columns: 1fr;
          gap: 30px;
     }

     .service-card {
          padding: 30px 20px;
     }

     .process-steps {
          grid-template-columns: 1fr;
          gap: 30px;
     }

     .process-step::after {
          display: none;
     }

     .process-step {
          padding: 30px 20px;
     }

     .step-number {
          width: 70px;
          height: 70px;
          font-size: 1.5rem;
     }

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

     .features-grid {
          grid-template-columns: 1fr;
          gap: 25px;
     }

     .feature-item {
          padding: 30px 20px;
     }

     .feature-icon {
          width: 70px;
          height: 70px;
          font-size: 1.8rem;
     }

     .hero-stats {
          grid-template-columns: repeat(2, 1fr);
          gap: 20px;
     }
}

@media (max-width: 1024px) and (min-width: 769px) {
     .process-steps {
          grid-template-columns: repeat(2, 1fr);
          gap: 25px;
     }
}

@media (max-width: 480px) {
     .hero-stats {
          grid-template-columns: 1fr;
     }

     .stat-number {
          font-size: 2rem;
     }

     .process-steps {
          gap: 20px;
     }

     .features-grid {
          gap: 20px;
     }
}

/* Enhanced animations for new sections */
@keyframes fadeInUp {
     from {
          opacity: 0;
          transform: translateY(30px);
     }

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

@keyframes slideInLeft {
     from {
          opacity: 0;
          transform: translateX(-50px);
     }

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

@keyframes slideInRight {
     from {
          opacity: 0;
          transform: translateX(50px);
     }

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

.service-card {
     animation: fadeInUp 0.6s ease forwards;
}

.service-card ul {
     padding-left: 0;
}

.service-card:nth-child(2) {
     animation-delay: 0.1s;
}

.service-card:nth-child(3) {
     animation-delay: 0.2s;
}

.service-card:nth-child(4) {
     animation-delay: 0.3s;
}

.service-card:nth-child(5) {
     animation-delay: 0.4s;
}

.service-card:nth-child(6) {
     animation-delay: 0.5s;
}

.process-step {
     animation: slideInLeft 0.8s ease forwards;
     background: white;
}

.process-step:nth-child(even) {
     animation: slideInRight 0.8s ease forwards;
}

.process-step:nth-child(2) {
     animation-delay: 0.2s;
}

.process-step:nth-child(3) {
     animation-delay: 0.4s;
}

.process-step:nth-child(4) {
     animation-delay: 0.6s;
}

.process-step:nth-child(5) {
     animation-delay: 0.8s;
}

.feature-item {
     animation: fadeInUp 0.7s ease forwards;
}

.feature-item:nth-child(2) {
     animation-delay: 0.15s;
}

.feature-item:nth-child(3) {
     animation-delay: 0.3s;
}

.feature-item:nth-child(4) {
     animation-delay: 0.45s;
}

.feature-item:nth-child(5) {
     animation-delay: 0.6s;
}

.feature-item:nth-child(6) {
     animation-delay: 0.75s;
}

/* =========================================================================
                                Top Bar 
=================================================================== */


.top-bar {
     /* background-color: var(--whitesmoke-color); */
     font-size: 14px;
     transition: top 0.3s ease-in-out;
     height: 5vh;
     display: flex;
     justify-content: center;
     align-items: center;
     color: var(--primary-color);
}

#topBar i {
     color: var(--primary-color);
     /* color: var(--white-color); */
     font-size: 1.1rem;
}

.top-bar .info {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 5px 15px;
     font-size: 1.07rem;
}

.top-bar.hide {
     top: -50px;
     /* Hide it */
}

header {
     background-color: var(--primary-color);
     /* background-color: transparent; */
     position: sticky;
     top: 0;
     z-index: 999;
}

.main-navbar .navbar-nav .nav-link {
     color: var(--primary-color) !important;
}

.main-navbar .navbar-brand {
     color: var(--primary-color);
     font-weight: bold;
}

.main-navbar .nav-link:hover {
     color: #ffc107;
}

/* For smooth transition of top bar */
.top-bar {
     position: relative;
     z-index: 1000;
}

/* =================================================================================
                                      NAVBAR 
 ==================================================================================== */

@media (min-width: 0px) {
     #brand-name {
          color: var(--primary-color);
     }

}

#brand-name {
     margin: 0 10px;
     font-weight: 500;
     color: var(--primary-color);
}


.nav-link {
     padding: 5px 25px;
     border-radius: 20px;
     margin: 0 5px;
}

.nav-link:hover,
.nav-link.active {
     color: var(--primary-color) !important;
     background-color: var(--whitesmoke-color);
     font-weight: 600;
}


.custom-header {
     /* background-color: var(--primary-color); */
     box-shadow: var(--shadow-soft);
     height: 13vh;
}

#rate-us {
     border-radius: 5px;
     border: 2px solid var(--secondary-color);
     padding: 5px 10px;
     font-weight: 600;
     font-size: 1.02rem;
     color: var(--secondary-color);
}

#rate-us:hover {
     background-color: var(--secondary-color);
     color: var(--primary-color);
}

.navbar-brand,
.nav-link {
     color: var(--white-color) !important;
     font-weight: 500;
}

.dropdown-menu {
     background-color: var(--whitesmoke-color);
}

.dropdown-item {
     color: var(--primary-color) !important;
     font-weight: 600;
}

.dropdown-item:hover {
     background-color: rgba(255, 255, 255, 0.2);
     background-color: var(--secondary-color);
}

.title-text h2 {
     font-weight: bold;
     font-size: 4rem;
     margin-bottom: 0.5rem;
}

.title-text h1 {
     font-weight: bold;
     font-size: var(--heading-font);
}

.spaced-row {
     padding: 40px 10px;
}

.welcome-text h3 {
     font-size: 2.5rem;
}

.welcome-text p {
     font-size: 1.5rem;
}

@media (max-width: 768px) {
     .title-text h1 {
          font-size: 2rem;
     }

     .title-text h2 {
          font-size: 1.3rem;
     }
}



@media (max-width:992px) {

     #navbarNavDropdown {
          position: static;
          top: 0;
          right: 0;
          background-color: var(--primary-color);
          color: white !important;
          border-bottom-left-radius: 15px;
          border-bottom-right-radius: 15px;
          padding-bottom: 1rem;
     }

     .navbar-toggler {
          background-color: var(--primary-color) !important;
     }

     .main-navbar .navbar-nav .nav-link {
          color: var(--white-color) !important;
          padding-left: 10px;
     }
}

/* =====================================================================================
                                Footer 
 ===================================================================================== */

footer .animate {
     background: url(arrow_testimonial.png);
     content: "";
     height: 60px;
     background-repeat: no-repeat;
     background-size: cover;
     margin-left: 0px;
     width: 100%;
     animation: slidein 1s ease-in-out infinite;
}


.animate img {
     background-color: var(--primary-color);
     height: 60px;
     width: 100%;
}

/** end services card **/


/** order **/

.order {
     background: var(--whitesmoke-color);
     padding-top: 60px;
}

.order .titlepage p {
     color: #4c4b4b;
     padding-top: 10px;
}

.order-box_main {
     margin-bottom: 30px;
}

.order-box {
     background: var(--white-color);
     transition: ease-in all 0.5s;
     padding: 30px 10px;
     cursor: pointer;

}

.order-box h3 {
    color: var(--primary-color);
    /* font-size: 20px; */
    /* line-height: 20px; */
    font-weight: 500;
    /* text-transform: uppercase; */
    /* padding-bottom: 15px; */
    transition: ease-in all 0.5s;
}

.order-box p {
     padding-top: 9px;
     color: #252626;
     display: flex;
     align-items: center;
     justify-content: center;
     padding-bottom: 15px;
}

.order-box p span {
     font-size: 44px;
     line-height: 44px;
     font-weight: bold;
     padding: 0 15px;
}

.order-box a {
     border: #7381b1 solid 1px;
     padding: 6px 20px;
     margin: 0 auto;
     border-radius: 30px;
     color: #464647;
     transition: ease-in all 0.5s;
}

.order-box a:hover {
     background-color: var(--primary-color);
     color: var(--white-color);
     transition: ease-in all 0.5s;
}

ul.supp li {
     font-size: 17px;
     color: #464647;
     line-height: 23px;
     padding-top: 21px;
}

.order-box_main .read_more {
     margin: 0 auto;
     display: block;
}

#ho_co:hover .order-box h3 {
     color: var(--secondary-color);
     transition: ease-in all 0.5s;
}

#ho_co:hover .order-box {
     border: var(--primary-color) solid 3px;
     transition: ease-in all 0.5s;
     transform: translateY(-5px);

}

#ho_co:hover .read_more {
     background-color: var(--primary-color);
     transition: ease-in all 0.5s;
}


/** end order **/


/** about section **/

.about {
     background: var(--secondary-color);
     padding-top: 2rem;
}

.about_img figure {
     margin: 0;

}

.about_img img {
     padding: 5px;
     border: var(--secondary-color) solid 3px;
     border-radius: 50%;
}

.about_img p {
     color: #1a1c1b;
     padding-top: 60px;
     padding-bottom: 60px;
}

.about .read_more {
     display: block;
     margin: 0 auto;
}


/** end about section **/

/** contact **/
/* ===== Form ====== */
.form {
     width: 100%;
     max-width: 600px;
     height: auto;
     padding: 25px;
     border: 2px solid #769de0;
     border-radius: 10px;
     color: #264a8b;
     margin: 0 auto;
}

.form input {
     width: 100%;
     padding: 10px;
     outline: none;
     margin-bottom: 10px;
     border-radius: 5px;
     border: none;
     font-size: 1.1rem;
     box-sizing: border-box;
}

.form button {
     font-size: 1.1rem;
     padding: 10px 20px;
     background-color: #1e3c72;
     color: #fff;
     font-weight: 600;
     border-radius: 10px;
     border: none;
     margin-top: 10px;
     cursor: pointer;
     transition: transform 0.2s ease;
}

.form button:hover,
.form button:active {
     transform: scale(1.1);
}

/* ===== Contact ====== */

.contactForm {
     min-height: 80vh;
     width: 100%;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-direction: column;
     padding: 20px;
}

.contactSection {
     background-color: #b0c8f7;
     display: grid;
     grid-template-columns: 1fr 1fr;
     min-height: 100vh;
     gap: 20px;
}

#contactPara {
     font-size: 1.1rem;
     color: #264a8b;
     padding: 25px;
     text-align: center;
     align-self: flex-start;
     padding-top: 20vh;
     position: relative;
}

#contactPara h2 {
     color: #264a8b;
     font-size: 2.2rem;
     font-weight: 600;
     margin-bottom: 15px;
}

#contactPara img {
     position: absolute;
     transform: rotate(0deg) translate(350px);
     max-width: 120px;
     height: auto;
}

#contactPara span {
     font-size: 2.2rem;
     font-weight: 600;
     color: #264a8b;
}

#contactPara p {
     color: #264a8b;
     margin-bottom: 30px;
}

/* ===== Social Links ====== */

.socialLinks {
     color: #264a8b;
     text-align: center;
}

.socialLinks a {
     font-size: 2rem;
     margin-top: 15px;
     margin-right: 15px;
     text-decoration: none;
     color: #264a8b;
     transition: transform 0.2s ease;
}

.socialLinks i:hover {
     transform: scale(1.2);
}

/* ===== Responsive Design ====== */

/* Tablet styles */
@media screen and (max-width: 1024px) {
     .contactSection {
          grid-template-columns: 1fr;
          gap: 0;
     }

     #contactPara {
          padding-top: 10vh;
          order: 1;
     }

     .contactForm {
          order: 2;
          min-height: 60vh;
     }

     #contactPara img {
          transform: rotate(-35deg) translate(200px);
     }

     #contactPara h2 {
          font-size: 1.8rem;
     }

     #contactPara span {
          font-size: 1.8rem;
     }
}

/* Mobile styles */
@media screen and (max-width: 768px) {
     .form {
          max-width: 100%;
          padding: 20px;
          margin: 0 10px;
     }

     .contactForm {
          padding: 1rem 1rem 4rem 1rem;
          min-height: 50vh;
     }

     #contactPara {
          padding: 20px;
          padding-top: 5vh;
     }

     #contactPara h2 {
          font-size: 1.5rem;
     }

     #contactPara span {
          font-size: 1.5rem;
     }

     #contactPara p {
          font-size: 1rem;
     }

     #contactPara img {
          display: none;
          /* Hide arrow on mobile for better layout */
     }

     .socialLinks a {
          font-size: 1.5rem;
          margin-right: 10px;
     }

     .form input {
          font-size: 1rem;
          padding: 12px;
     }

     .form button {
          width: 100%;
          font-size: 1rem;
          padding: 12px;
     }
}

/* Small mobile styles */
@media screen and (max-width: 480px) {
     .contactSection {
          min-height: auto;
     }

     .form {
          padding: 15px;
     }

     #contactPara h2 {
          font-size: 1.3rem;
     }

     #contactPara span {
          font-size: 1.3rem;
     }

     #contactPara p {
          font-size: 0.9rem;
     }

     .socialLinks a {
          font-size: 1.3rem;
     }
}



/** end contact **/


/** footer **/

.footer {
     margin-top: 90px;
     padding-top: 90px;
     background: #223781;
     text-align: center;
}

.form_subscri {
     margin-right: 31px;
}

.infoma {
     display: block;
     padding-bottom: 20px;
}

ul.commodo li {
     color: var(--white-color);
     font-size: 17px;
     text-align: left;
     line-height: 30px;
     display: block;
}

.infoma h3 {
     text-align: left;
     font-weight: 500;
     font-size: 17px;
     line-height: 20px;
     color: var(--white-color);
     padding-bottom: 15px;
     text-transform: uppercase;
}

ul.menu_footer li a {
     color: var(--white-color);
     font-size: 17px;
     text-align: left;
     line-height: 30px;
     display: block;
}

ul.menu_footer li a:hover {
     color: var(--secondary-color);
}

ul.conta {
     padding-top: 12px;
}

ul.conta li {
     color: var(--white-color);
     text-align: left;
     padding-bottom: 15px;
     font-size: 14px;
     line-height: 18px;
     display: flex;
     align-items: center;
}

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

ul.conta li i {
     padding-right: 15px;
     text-align: center;
     font-size: 21px;
     color: var(--white-color);
}

ul.conta li a {
     color: var(--white-color);
}

.copyright {
     margin-top: 50px;
     padding-bottom: 20px;
}

.copyright p {
     color: var(--white-color);
     font-size: 18px;
     line-height: 22px;
     text-align: center;
     font-weight: normal;
}

.copyright a {
     color: var(--white-color);
}

.copyright a:hover {
     color: var(--secondary-color);
}


/** end footer **/


/**  inner page css **/

.inner_page .header {
     position: inherit;
     background: var(--primary-color);
     box-shadow: 0px 0px 9px 0px var(--primary-color);
     margin-bottom: 10px;
}

.hosting_page .footer {
     margin-top: 60px;
}

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

/* =====================================================================================
                                Footer 
 ===================================================================================== */

footer button {
     border-radius: 5px;
     border: 2px solid var(--secondary-color);
     padding: 5px 15px;
     font-weight: 600;
     font-size: 1.02rem;
     color: var(--secondary-color);
     background-color: var(--primary-color);
     cursor: pointer;
     transition: all 0.3s ease;
}

footer button:hover {
     background-color: var(--secondary-color);
     color: var(--primary-color);
}

footer textarea {
     border-radius: 2px;
     width: 100%;
     height: 10vh;
     color: var(--primary-color);
     border: none;
     outline: none;
     padding: 2px 10px;
     font-family: inherit;
     resize: vertical;
}

footer input {
     border-radius: 2px;
     width: 100%;
     height: 4vh;
     color: var(--primary-color);
     border: none;
     outline: none;
     padding: 2px 10px;
     font-family: inherit;
}

.custom-footer {
     background-color: var(--primary-color) !important;
     color: var(--white-color);
     width: 100%;
}

.footer-links a {
     color: var(--white-color);
     text-decoration: none;
     transition: all 0.3s ease;
}

.footer-links a:hover {
     text-decoration: underline;
     color: var(--secondary-color);
}

.map-container {
     height: 350px;
     width: 100%;
     border-radius: 8px;
     overflow: hidden;
}

.social-icons a {
     color: var(--white-color);
     font-size: 1.5rem;
     margin-right: 15px;
     transition: transform 0.3s ease;
     text-decoration: none;
}

.social-icons a:hover {
     transform: translateY(-3px);
     color: var(--secondary-color);
}

.elec-container {
     background-color: var(--whitesmoke-color);
     max-width: 100vw;
     overflow-x: hidden;
}

.elec-inner {
     display: flex;
     align-items: center;
     gap: 40px;
     padding: 20px;
     flex-wrap: wrap;
}

.elec-logo {
     flex-shrink: 0;
     display: flex;
     justify-content: center;
     align-items: center;
}

.elec-logo-img {
     max-width: 200px;
     width: 100%;
     aspect-ratio: 1 / 1;
     object-fit: cover;
     border-radius: 50%;
}

.elec-text {
     display: flex;
     flex-direction: column;
     align-items: flex-start;
}

.elec-title {
     font-size: 64px;
     font-weight: bold;
     color: var(--black-color);
     line-height: 1.1;
}

.elec-subtitle {
     font-size: 36px;
     color: var(--black-color);
     font-weight: normal;
     text-align: right;
     width: 100%;
}

/* ENHANCED RESPONSIVE FOOTER */

/* Desktop Large (1200px+) */
@media (min-width: 1200px) {
     .custom-footer {
          padding: 3rem 2rem 1rem 2rem;
     }

     .map-container {
          height: 300px;
     }

     .social-icons a {
          font-size: 1.8rem;
          margin-right: 20px;
     }

     .elec-title {
          font-size: 72px;
     }

     .elec-subtitle {
          font-size: 42px;
     }
}

/* Desktop Medium (993px - 1199px) */
@media (max-width: 1199px) and (min-width: 993px) {
     .custom-footer {
          padding: 2.5rem 1.5rem 1rem 1.5rem;
     }

     .elec-title {
          font-size: 60px;
     }

     .elec-subtitle {
          font-size: 34px;
     }
}

/* Large Tablets (769px - 992px) */
@media (max-width: 992px) and (min-width: 769px) {
     .custom-footer {
          padding: 2rem 1rem 1rem 1rem;
     }

     .map-container {
          height: 250px;
     }

     .social-icons a {
          font-size: 1.4rem;
          margin-right: 12px;
     }

     footer button {
          padding: 4px 12px;
          font-size: 0.95rem;
     }

     footer textarea {
          height: 20vh;
     }

     footer input {
          height: 4.5vh;
     }

     .elec-title {
          font-size: 48px;
     }

     .elec-subtitle {
          font-size: 28px;
     }

     .elec-text {
          align-items: center;
          text-align: center;
     }

     .elec-subtitle {
          text-align: center;
     }
}

/* Small Tablets (577px - 768px) */
@media (max-width: 768px) and (min-width: 577px) {
     .custom-footer {
          padding: 1.5rem 1rem 0.8rem 1rem;
     }

     .map-container {
          height: 200px;
     }

     .social-icons a {
          font-size: 1.3rem;
          margin-right: 10px;
     }

     footer button {
          padding: 4px 10px;
          font-size: 0.9rem;
     }

     footer textarea {
          height: 7vh;
          padding: 5px 8px;
     }

     footer input {
          height: 3vh;
          padding: 2px 8px;
     }

     .elec-title {
          font-size: 42px;
     }

     .elec-subtitle {
          font-size: 26px;
     }

     .elec-inner {
          gap: 25px;
          padding: 15px;
     }
}

/* Mobile (320px - 576px) */
@media (max-width: 576px) {
     .custom-footer {
          padding: 1rem 0.8rem 0.5rem 0.8rem;
     }

     .map-container {
          height: 180px;
     }

     .social-icons a {
          font-size: 1.2rem;
          margin-right: 8px;
     }

     footer button {
          padding: 3px 8px;
          font-size: 0.85rem;
     }

     footer textarea {
          height: 15vh;
          padding: 4px 6px;
          font-size: 0.9rem;
     }

     footer input {
          height: 4vh;
          padding: 2px 6px;
          font-size: 0.9rem;
     }

     .elec-logo-img {
          max-width: 150px;
     }

     .elec-title {
          font-size: 36px;
     }

     .elec-subtitle {
          font-size: 24px;
     }

     .elec-inner {
          gap: 20px;
          justify-content: center;
          padding: 10px;
     }

     #rate-us {
          padding: 3px 8px;
          font-size: 0.85rem;
     }
}

/* Extra Small Mobile (280px - 320px) */
@media (max-width: 320px) {
     .custom-footer {
          padding: 0.8rem 0.5rem 0.3rem 0.5rem;
     }

     .map-container {
          height: 160px;
     }

     .social-icons a {
          font-size: 1.1rem;
          margin-right: 6px;
     }

     .elec-title {
          font-size: 32px;
     }

     .elec-subtitle {
          font-size: 22px;
     }

     .elec-logo-img {
          max-width: 130px;
     }
}

/* ==============================================================================
                             BACK TO TOP BTN 
================================================================================== */

#backToTopBtn {
     position: fixed;
     bottom: 120px;
     right: 25px;
     width: 44px;
     height: 44px;
     border-radius: 50%;
     background-color: var(--secondary-color);
     color: var(--primary-color);
     border: none;
     font-size: 24px;
     cursor: pointer;
     box-shadow: var(--shadow-soft);
     z-index: 1000;
     transition: all 0.3s ease;
     display: none;
}

#backToTopBtn:hover {
     background-color: var(--hover-color);
     color: var(--white-color);
     transform: scale(1.1);
}

#backToTopBtn.show {
     display: block;
}

/* ENHANCED RESPONSIVE BACK TO TOP BUTTON */

/* Large Tablets and up */
@media (min-width: 769px) {
     #backToTopBtn {
          width: 50px;
          height: 50px;
          font-size: 26px;
     }

     .hero-section {
          padding: 25px 50px 50px 50px;
     }
}

/* Small Tablets (577px - 768px) */
@media (max-width: 768px) and (min-width: 577px) {
     #backToTopBtn {
          bottom: 110px;
          right: 28px;
          width: 42px;
          height: 42px;
          font-size: 22px;
     }
}

/* Mobile (320px - 576px) */
@media (max-width: 576px) {
     #backToTopBtn {
          bottom: 100px;
          right: 22px;
          width: 40px;
          height: 40px;
          font-size: 20px;
     }
}

/* Extra Small Mobile (280px - 320px) */
@media (max-width: 320px) {
     #backToTopBtn {
          bottom: 90px;
          right: 18px;
          width: 36px;
          height: 36px;
          font-size: 18px;
     }
}