/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #0056b3;
    --primary-dark: #004494;
    --primary-light: #e6f0ff;
    --secondary-color: #ff6b35;
    --secondary-light: #fff0eb;
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --white-color: #ffffff;
    --border-color: #dee2e6;
    --body-font: 'Outfit', sans-serif;
    --heading-font: 'Plus Jakarta Sans', sans-serif;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
}

@font-face {
  font-family: 'CloisterBlack';
  src: url('assets/fonts/CloisterBlack.ttf') format('truetype');
}

.logo-text {
  font-family: 'CloisterBlack', serif;
}

/* General styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    color: #555;
    line-height: 1.8;
    overflow-x: hidden;
    padding-top: 0;
    background-color: #fcfcfc;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition);
    color: var(--primary-color);
}

a:hover {
    color: var(--primary-dark);
}

.btn {
    padding: 12px 30px;
    font-weight: 500;
    transition: var(--transition);
    border-radius: 50px;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.3);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 86, 179, 0.2);
}

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

section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    section {
        padding: 60px 0;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }
}

.section-badge {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.section-description {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.py-5 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.rounded-4 {
    border-radius: var(--border-radius-md);
}

.rounded-5 {
    border-radius: var(--border-radius-lg);
}

.shadow {
    box-shadow: var(--box-shadow) !important;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.navbar-shrink {
    padding: 10px 0;
}

.navbar-brand {
    padding: 0;
}

.logo-container {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: 1.2;
}

.iso-badge {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--secondary-color);
    display: block;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 8px 16px;
    position: relative;
}

.navbar-light .navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.navbar-light .navbar-nav .nav-link:hover:after,
.navbar-light .navbar-nav .nav-link.active:after {
    width: calc(100% - 32px);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar .dropdown-menu {
    border: none;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 15px 0;
}

.navbar .dropdown-item {
    padding: 10px 25px;
    font-weight: 500;
    transition: var(--transition);
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background-color: var(--primary-light);
    color: var(--primary-color);
}

.rounded-pill {
    border-radius: 50px !important;
}

/* New styles - Add these */
.navbar .container {
    padding-left: 0;
}

.navbar-light .navbar-nav .dropdown-toggle:after {
    display: none;
}

.navbar .btn-primary {
    padding: 8px 20px;
}
/* End new styles */

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 12px;
        padding-right: 12px;
        white-space: nowrap;
    }
    
    .navbar-brand {
        margin-right: 10px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .navbar .dropdown-toggle .fa-caret-down {
        font-size: 0.8rem;
        transition: var(--transition);
    }
    
    .navbar .dropdown:hover .dropdown-toggle .fa-caret-down {
        transform: rotate(180deg);
    }
}

/* Improve mobile navbar */
@media (max-width: 991px) {
    .navbar-light .navbar-nav .nav-link {
        padding: 10px 16px;
    }
    
    .navbar-brand {
        max-width: 70%;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .navbar .ms-3 {
        margin-left: 0 !important;
        margin-top: 15px;
    }
    
    .navbar .btn-primary {
        display: block;
        width: 100%;
        text-align: center;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    background-color: var(--dark-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    max-width: 700px;
    color: #fff;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.swiper-button-next,
.swiper-button-prev {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #fff;
    transform: scale(1.2);
}

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 767px) {
    .hero {
        min-height: 600px;
    }
    
    .hero-content {
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
}

/* Stats Counter */
.stats-counter {
    background-color: #fff;
    box-shadow: 0 -30px 50px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
    margin-top: -100px;
    border-radius: var(--border-radius-md);
}

.counter-item {
    padding: 20px;
    text-align: center;
    position: relative;
}

.counter-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background-color: #eee;
}

.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.counter-item h5 {
    font-size: 1rem;
    color: var(--gray-color);
    font-weight: 500;
    margin: 0;
}

@media (max-width: 767px) {
    .stats-counter {
        margin-top: -50px;
    }
    
    .counter-item:nth-child(even)::after {
        display: none;
    }
    
    .counter {
        font-size: 2rem;
    }
}

/* About Brief */
.about-brief {
    background-color: #fff;
}

.about-text {
    padding: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.value-item {
    display: flex;
    align-items: flex-start;
}

.value-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 15px;
}

.value-content h5 {
    margin-bottom: 5px;
    font-size: 1rem;
}

.value-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.about-image {
    position: relative;
    padding: 10px;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
}

.about-image-small {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 50%;
    box-shadow: var(--box-shadow);
    border: 5px solid #fff;
    border-radius: var(--border-radius-md);
}

.experience-badge {
    position: absolute;
    bottom: -25px;
    left: 30px;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: var(--border-radius-md);
    text-align: center;
    font-weight: 600;
    box-shadow: 0 10px 25px rgba(0, 86, 179, 0.2);
}

.experience-badge .number {
    font-size: 2.5rem;
    line-height: 1;
    display: block;
}

.experience-badge .text {
    font-size: 0.85rem;
    display: block;
    opacity: 0.9;
}

@media (max-width: 991px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .experience-badge {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .about-image-small {
        bottom: -10px;
        right: -10px;
    }
}

/* Services Section */
.services {
    background-color: var(--light-color);
}

.service-card {
    background-color: var(--white-color);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--primary-light);
    z-index: -1;
    transition: var(--transition);
}

.service-card:hover:before {
    height: 100%;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 24px;
    background-color: var(--primary-light);
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 auto 25px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background-color: var(--white-color);
    color: var(--primary-color);
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.service-link {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    margin-top: 20px;
    position: relative;
    padding-bottom: 5px;
}

.service-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.service-link:hover:after {
    width: 100%;
}

.service-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Why Choose Us with Video */
.why-choose-us {
    background-color: #fff;
}

.video-container {
    position: relative;
    overflow: hidden;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 1.5rem;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.video-play-btn:before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    animation: pulse 2s infinite;
}

.video-play-btn:hover {
    background-color: var(--primary-dark);
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.feature-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.feature-icon {
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 16px;
    font-size: 1.5rem;
    margin-right: 20px;
    transition: var(--transition);
}

.feature-item:hover .feature-icon {
    background-color: var(--primary-color);
    color: #fff;
}

.feature-text h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.feature-text p {
    margin-bottom: 0;
    opacity: 0.8;
}

/* Clients Section */
.clients {
    background-color: var(--light-color);
    position: relative;
}

.client-logo {
    padding: 15px;
    background-color: #fff;
    border-radius: var(--border-radius-md);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 5px;
    transition: var(--transition);
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.client-logo img {
    max-width: 80%;
    max-height: 60px;
    opacity: 1;
    transition: var(--transition);
}

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

.testimonial-card {
    background-color: #fff;
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    margin: 10px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 25px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 3px solid var(--primary-light);
}

.author-info h5 {
    margin-bottom: 0;
    font-size: 1rem;
}

.author-info p {
    margin-bottom: 0;
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Recent Projects Gallery */
.gallery-item {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

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

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

.gallery-content {
    color: #fff;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-content h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* Team Preview */
.team-preview {
    background-color: var(--light-color);
}

.team-card {
    background-color: #fff;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    transition: var(--transition);
}

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

.team-social {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 86, 179, 0.9), rgba(0, 86, 179, 0));
    display: flex;
    justify-content: center;
    transition: var(--transition);
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: var(--primary-color);
    border-radius: 50%;
    margin: 0 5px;
    transition: var(--transition);
}

.team-social a:hover {
    background-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-3px);
}

.team-info {
    padding: 20px;
    text-align: center;
}

.team-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.position {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

.team-brief {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 0;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    position: relative;
    color: #fff;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.cta * {
    position: relative;
    z-index: 1;
}

/* Footer */
.footer {
    background-color: #f8f9fa;
}

.footer-top {
    background-color: #fff;
}

.footer h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer h5 {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

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

.footer-links li {
    margin-bottom: 12px;
    position: relative;
}

.footer-links a {
    color: #666;
    transition: var(--transition);
    padding-left: 0;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    margin-right: 10px;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    align-items: center;
}

.contact-item i {
    margin-right: 15px;
    color: var(--primary-color);
    min-width: 20px;
}

.google-map {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.footer-bottom {
    background-color: #f1f2f3;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary-color);
}

.footer-iso {
    display: inline-block;
    padding: 10px 15px;
    border-radius: var(--border-radius-sm);
}

/* Back to top button */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.back-to-top:hover {
    background-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-5px);
}

.back-to-top i {
    font-size: 20px;
}

/* Media Queries */
@media (max-width: 991px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .counter-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .experience-badge {
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        padding: 10px 20px;
    }
    
    .experience-badge .number {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .back-to-top {
        right: 15px;
        bottom: 15px;
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 575px) {
    .hero-content .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-content .btn + .btn {
        margin-left: 0 !important;
    }
    
    .section-badge {
        font-size: 0.75rem;
    }
    
    .feature-icon {
        min-width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

.footer-iso {
    background: rgba(0, 86, 179, 0.08);  /* Changed to primary color with transparency */
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

.footer-iso:hover {
    background: rgba(0, 86, 179, 0.15);  /* Changed to primary color with transparency */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.iso-badge-container {
    position: relative;
}

.iso-badge-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(79, 172, 254, 0.3) 0%, rgba(0, 242, 254, 0) 70%);  /* Increased opacity */
    top: 0;
    left: 0;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.iso-title {
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    color: #333;  /* Changed from white to dark color for visibility */
    font-weight: 600;  /* Made bolder for better visibility */
}

.iso-subtitle {
    font-size: 0.85rem;
    color: #555;  /* Changed from transparent white to gray */
    letter-spacing: 0.5px;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.7;
    }
    70% {
        transform: scale(1.05);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.7;
    }
}

/* Mega Menu Styles - Centered */
.mega-menu {
    width: 900px;
    max-width: 90vw;
    padding: 20px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
}

.nav-item.dropdown {
    position: static;
}

.navbar .container {
    position: relative;
}

.dropdown-header.text-primary {
    color: var(--primary-color) !important;
    font-weight: 600;
    padding: 0.5rem 1rem;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.mega-menu .dropdown-item {
    color: var(--dark-color);
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
    transition: all 0.2s ease;
    text-align: left;
}

.mega-menu .dropdown-item:hover {
    background-color: var(--primary-light);
    color: var(--primary-color);
    transform: translateX(5px);
    border-radius: var(--border-radius-md);
}

@media (max-width: 991px) {
    .mega-menu {
        width: 100%;
        max-width: 100%;
        transform: none;
        left: 0;
    }
    
    .mega-menu .row > div {
        margin-bottom: 15px;
    }
}

@media (max-width: 991px) {
    .navbar .dropdown-menu.mega-menu {
        max-height: 70vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        position: static;
        width: 100%;
        border: none;
        box-shadow: none;
        padding-bottom: 15px;
    }
    
    .navbar-collapse {
        max-height: 75vh;
        overflow-y: auto;
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .mega-menu .row {
        margin-right: 0;
        margin-left: 0;
    }
    
    .mega-menu .col-md-6 {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}
