:root {
    --primary-glow: #00e5ff;
    --dark-bg: #000;
    --secondary-dark: #111122;
    --orange: #e67e22;
    --blue: #34495e;
    --dark-blue: #2c3e50;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: white;
    overflow-x: hidden;
    position: relative;
}

.navbar {
    background: linear-gradient(135deg, #1a1f2e 0%, #272727 100%);
    font-size: smaller;
    position: fixed;
    width: 100%;
    z-index: 10;
}
.navbar-brand img {
    max-height: 50px; /* Adjust height to fit navbar */
    width: auto; /* Maintain aspect ratio */
    display: block;
}

.navbar-toggler  {
    background: whitesmoke;
    opacity: 60%;
    padding: 5px 8px; /* Reduce padding */
    font-size: 0.8rem; /* Reduce icon size */
}

@media (max-width: 768px) {
    section {
        padding: 17px !important;
    }
}


.text-orange
{
    color: #ff8c00;
}

.bg-dark-custom {
    background-color: var(--dark-bg);
}

.glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid transparent;
    box-shadow: 0 0 60px 30px rgba(0, 229, 255, 0.1);
    z-index: 0;
}

#glow1 {
    top: -100px;
    right: -100px;
}

#glow2 {
    bottom: 50px;
    left: -50px;
}

#glow3 {
    bottom: 40%;
    right: 20%;
}

.logo {
    height: 36px;
}

.navbar {
    z-index: 10; 
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8);
    margin-left: 10px;
    margin-right: 10px;
    font-size: 15px;
    font-weight: 500;
}

.btn-light {
    background-color: white;
    color: var(--dark-bg);
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: 600;
}

.btn-outline-light {
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: 500;
    font-size: 11px;
}

.hero-section { 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; 
    position: relative;
    z-index: 1;
    padding-top: 40px;
    background: url('../images/hero-bg2.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    height: 70vh;

}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1rem;
    max-width: 600px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.7);
}

.btn-glow {
    background: rgba(0, 229, 255, 0.1);
    color: var(--primary-glow);
    border: 1px solid var(--primary-glow);
    border-radius: 30px;
    padding: 10px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-glow:hover {
    background: rgba(0, 229, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 229, 255, 0.5);
}

.badge-custom {
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    padding: 8px 12px;
    font-size: 0.75rem;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-glow);
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

@media (max-width: 500px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

/* __________ABOUT US_____________________ */

.about-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-title {
    font-size: 2.0rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.about-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.feature-icon {
    color: var(--orange);
    margin-right: 10px;
}

.feature-text {
    font-size: 1rem;
    color: #555;
}

.contact-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.contact-info h5 {
    margin-bottom: 0;
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 0;
    color: #777;
    font-size: 0.9rem;
}

.contact-phone {
    background-color: #5038ee;
    color: white;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.phone-icon {
    width: 30px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.about-images img {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.stacked-images {
    position: relative;
}

.image-1 {
    position: relative;
    z-index: 3;
}

.image-2 {
    position: relative;
    z-index: 2;
    margin-top: -60px;
    margin-left: 60px;
}

.image-3 {
    position: relative;
    z-index: 1;
    margin-top: -40px;
    margin-left: 120px;
}

@media (max-width: 768px) {
    .stacked-images {
        margin-bottom: 60px;
    }
    
    .about-section {
        padding: 40px 0;
    }
}

/* ______________________________ */



/* ______________WHAT WE DO____________________ */
 

.what-we-do-section {
    overflow: hidden;
}

.left-panel {
    background-color: #e67e22;
    color: white;
    padding: 80px 40px; 
}

.right-panel {
    background-color: #34495e;
    color: white;
    padding: 40px;
    background-image: url('https://via.placeholder.com/800x600/34495e/ffffff?text=City+Skyline');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
}

.what-we-do-title {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 30px;
    position: relative;
}

.what-we-do-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: white;
    margin-top: 20px;
}

.what-we-do-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.read-more {
    display: inline-block;
    background-color: #2c3e50;
    color: white;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more:hover {
    background-color: #1a252f;
    color: white;
    transform: translateY(-3px);
}

.read-more i {
    margin-left: 8px;
}

.what-we-do-card {
    margin-bottom: 30px;
}

.what-we-do-icon {
    color: #e67e22;
    font-size: 24px;
    margin-bottom: 15px;
}

.what-we-do-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.what-we-do-card p {
    font-size: 15px;
    opacity: 0.8;
}

.what-we-do .service-description {
    color: #fafafa;
    margin-bottom: 20px;
    line-height: 1.6;
}

.dark .what-we-do .service-description {
    color: #fafafa;
}

/* __________________________________ */
 

/* _________________________________________ */

.services-section {
    padding: 80px 0;
    background: whitesmoke;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading {
    color: #2c3e50;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.subtitle {
    color: #7f8c8d;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-img-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.services-section .service-card {
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    height: 100%;
    transition: all 0.3s ease;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.services-section .service-card.dark {
    background-color: #ff8c00;
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.services-section .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
}

.services-section .service-title {
    font-weight: 600;
    color: #1d1d1d;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.services-section .service-description {
    color: #1d1d1d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.services-section .more-services .service-title {
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.services-section  .more-services .service-description {
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.6;
}
 

.service-link {
    color: #2ecc71;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.dark .service-link {
    color: #f1c40f;
}

.service-link:hover {
    color: #27ae60;
}

.dark .service-link:hover {
    color: #f39c12;
}

.service-link i {
    margin-left: 5px;
    transition: all 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .section-heading {
        font-size: 2rem;
    }
    
    .service-img-container {
        margin-bottom: 30px;
    }
}

.ad-service-bg-1
{
    background:url('../images/ad-services-1.png')!important;
    background-size: cover!important;
    background-position: center!important;
    background-blend-mode: overlay;

}

.ad-service-bg-2
{
    background:url('../images/ad-services-2.png')!important;
    background-size: cover!important;
    background-position: center!important;
    background-blend-mode: overlay;

}

.ad-service-bg-3
{
    background:url('../images/ad-services-3.png')!important;
    background-size: cover!important;
    background-position: center!important;
    background-blend-mode: overlay;

}

/* Default style for all service cards */
.service-card {
    background-color: white; /* Default background */
    transition: background 0.3s ease, transform 0.3s ease;
}

/* Hover & Selection effect for all service cards */
.service-card:hover,
.service-card:focus-within {
    background-color: #ff8c00; /* Change background on hover */
    color: white; /* Change text color for contrast */
    transform: scale(1.05); /* Optional: Slight zoom effect */
}

/* Ensure text remains readable when hovered */
.service-card:hover .service-title,
.service-card:hover .service-description,
.service-card:focus-within .service-title,
.service-card:focus-within .service-description {
    color: white;
}

/* Default CEO Card Styling */
.ceo-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Default subtle shadow */
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

/* Hover effect: Change shadow to orange */
.ceo-card:hover {
    transform: scale(1.02); /* Slight zoom effect */
}

/* _______________________________________ */



.ceo-section {
    background-color: #f8f9fa;
    padding: 50px 0;
}
.ceo-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.ceo-image {
    max-width: 60%;
    border-radius: 10px;
}
.ceo-name {
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 15px;
}
.ceo-title {
    color: #6c757d;
    font-size: 1rem;
}


.footer {
    background-color: #222;
    color: #ffffff;
    padding: 40px 0;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Resize logo */
.footer-logo {
    max-height: 100px; /* Adjust logo size */
    width: auto;
}

/* Social media icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px; /* Space between icons */
    margin-top: 10px;
}

.footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #ff8c00; /* Icon background color */
    border-radius: 50%;
    transition: background 0.3s;
}

.footer-icon i {
    font-size: 18px;
    color: white;
}

.footer-icon:hover {
    background-color: #e67e22;
}

/* Quick Links & Contact Styling */
.footer h5 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 8px;
    color: #aaaaaa;
}

.footer-links a {
    color: #aaaaaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff8c00;
}

/* Contact Info Styling */
.footer-contact i {
    color: #ff8c00;
    margin-right: 8px;
}

/* Copyright */
.copyright {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #aaaaaa;
}

/* Social Icons Container */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px; /* Space between icons */
    margin-top: 10px;
}

/* Style for Icons */
.footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ff8c00; /* Icon background color */
    border-radius: 50%;
    transition: background 0.3s;
    text-decoration: none; /* Remove link underline */
}

.footer ul {
    list-style: none; /* Removes default bullets */
    padding: 0; /* Removes default padding */
    margin: 0; /* Removes extra space */
}

@media (min-width: 768px) {
    .location-item {
      display: flex;
      align-items: center;
    }
    
    .location-icon {
      margin-right: 0.5rem;
    }
  }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 5px; 
}

/* Track */
::-webkit-scrollbar-track {
    background: #f0f0f0;   
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #1a1f2e 0%, #2a3040 100%);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--orange)  
}
