:root {
    --primary-color: #1a4789;
    --secondary-color: #2c5aa0;
    --accent-color: #f0ab00;
    --dark-blue: #0a2544;
    --light-gray: #f5f5f5;
    --text-light: #ffffff;
    --text-dark: #333333;
}
:root {
    --purple-dark: #4b2d82;
    --purple-light: #9c6dd4;
    --blue-light: #40c4e0;
    --blue-dark: #086d8e;
    --background: #fdfbe6;
    --text-dark: #333;
    --card-bg: #ffffff;
    --gray-light: #f5f5f5;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}
h2{
  font-family: 'Arial', sans-serif;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 15px 50px;
   
}

.logo-container {
    display: flex;
    align-items: center;
    width:9%;
    gap: 15px;
}
img{
max-width:100%;
}
.logo-img {
    width: 45px;
    height: 45px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 1.2rem;
}

.logo-text {
    font-size: 1.6rem;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: black;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

/* Add dropdown styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 1000;
    padding: 10px 0;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.contact-btn {
  background: linear-gradient(45deg, #4c2d71, #4b93be);
    padding: 12px 30px;
    border-radius: 30px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(240, 171, 0, 0.3);
}

.container {
    max-width: 87%;
    margin: 0 auto;
}
/*  */
.abr-popup {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
z-index: 1000;
overflow-y: auto;
padding: 2rem;
}

.abr-popup.active {
display: flex;
align-items: center;
justify-content: center;
}

.abr-popup__content {
background-color: white;
border-radius: 1rem;
padding: 2rem;
max-width: 600px;
width: 100%;
position: relative;
animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.abr-popup__close {
position: absolute;
top: 1rem;
right: 1rem;
background: none;
border: none;
font-size: 1.5rem;
color: #6c757d;
cursor: pointer;
padding: 0.5rem;
line-height: 1;
}

.abr-popup__close:hover {
color: #2c3e50;
}

.abr-popup__header {
text-align: center;
margin-bottom: 2rem;
}

.abr-popup__title {
font-size: 1.75rem;
font-weight: 600;
color: #2c3e50;
margin-bottom: 0.5rem;
}

.abr-popup__subtitle {
color: #6c757d;
font-size: 1rem;
}

.abr-popup__form-group {
display: grid;
gap: 1.25rem;
}

/* New styles for the row layout */
.abr-popup__form-row {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 1rem;
}

.abr-popup__form-field {
display: flex;
flex-direction: column;
gap: 0.5rem;
}

.abr-popup__form-label {
font-weight: 500;
color: #2c3e50;
}

.abr-popup__form-input,
.abr-popup__form-textarea {
padding: 0.75rem;
border: 1px solid #dee2e6;
border-radius: 0.5rem;
font-size: 1rem;
transition: border-color 0.2s;
}

.abr-popup__form-input:focus,
.abr-popup__form-textarea:focus {
outline: none;
border-color: #4a90e2;
}

.abr-popup__form-textarea {
resize: vertical;
}

.abr-popup__form-submit {
width: 100%;
margin-top: 1.5rem;
background-color: #4a90e2;
color: white;
padding: 0.875rem;
border: none;
border-radius: 0.5rem;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: background-color 0.2s;
}

.abr-popup__form-submit:hover {
background-color: #357abd;
}

@media (max-width: 640px) {
.abr-popup {
padding: 1rem;
}

.abr-popup__content {
padding: 1.5rem;
}

.abr-popup__title {
font-size: 1.5rem;
}

/* Make fields stack on mobile */
.abr-popup__form-row {
grid-template-columns: 1fr;
}
}
/*  */
.primary-btn,
.secondary-btn {
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.primary-btn {
    background: linear-gradient(45deg, var(--accent-color), #e6a200);
    color: var(--text-light);
}

.secondary-btn {
    background: linear-gradient(135deg, #5bb9e1, var(--blue-light));
    color: var(--text-light);
    
}

.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.read-more {
    display: inline-block;
    background: linear-gradient(135deg, #5bb9e1, var(--blue-light));
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(75, 45, 130, 0.3);
}

.read-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(75, 45, 130, 0.4);
}

.read-more i {
    margin-left: 8px;
}
.section-pretitle {
    color: #5ec4ea;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    color: #4d2f73;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

/*  */
.abr-footer {
background: linear-gradient(45deg, #4c2d71, #4b93be);
color: var(--text-light);
padding: 4rem 0 1rem;
}

.abr-footer__container {
max-width: 1200px;
margin: 0 auto;
padding: 0 1rem;
}

.abr-footer__top {
display: grid;
grid-template-columns: 2fr 1fr 1fr 1.5fr;
gap: 3rem;
margin-bottom: 3rem;
}

.abr-footer__company {
max-width: 360px;
}

.abr-footer__logo {
    display: block;
    font-size: 3rem;
    text-decoration: none;
    color: white;
    font-weight: 700;
}

.abr-footer__description {
color: #cbd5e1;
line-height: 1.6;
margin-bottom: 1.5rem;
}

.abr-footer__social {
display: flex;
gap: 1rem;
}

.abr-footer__social-link {
display: flex;
align-items: center;
justify-content: center;
width: 36px;
height: 36px;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 50%;
transition: background-color 0.3s;
}

.abr-footer__social-link:hover {
background-color: var(--accent-color);
}

.abr-footer__social-icon {
width: 20px;
height: 20px;
fill: currentColor;
}

.abr-footer__title {
color: var(--text-light);
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 1.5rem;
}

.abr-footer__list {
list-style: none;
padding: 0;
margin: 0;
}

.abr-footer__list li {
margin-bottom: 0.75rem;
}

.abr-footer__list a {
color: #cbd5e1;
text-decoration: none;
transition: color 0.3s;
}

.abr-footer__list a:hover {
color: var(--accent-color);
}

.abr-footer__contact-item {
display: flex;
align-items: flex-start;
gap: 0.75rem;
margin-bottom: 1rem;
}

.abr-footer__contact-icon {
width: 20px;
height: 20px;
fill: none;
stroke: currentColor;
stroke-width: 2;
stroke-linecap: round;
stroke-linejoin: round;
flex-shrink: 0;
margin-top: 0.25rem;
}

.abr-footer__bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 2rem;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}

.abr-footer__copyright {
color: #cbd5e1;
}

.abr-footer__legal {
display: flex;
gap: 2rem;
}

.abr-footer__legal a {
color: #cbd5e1;
text-decoration: none;
transition: color 0.3s;
}

.abr-footer__legal a:hover {
color: var(--accent-color);
}

@media (max-width: 1024px) {
.abr-footer__top {
grid-template-columns: 1fr 1fr;
gap: 2rem;
}

.abr-footer__company {
grid-column: 1 / -1;
max-width: none;
}
}

@media (max-width: 640px) {
.abr-footer {
padding: 3rem 0 1rem;
}

.abr-footer__top {
grid-template-columns: 1fr;
gap: 2rem;
}

.abr-footer__bottom {
flex-direction: column;
text-align: center;
}

.abr-footer__legal {
flex-direction: column;
gap: 1rem;
align-items: center;
}
}
/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color:black;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
}

/* Animations */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        gap: 25px;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .company-name {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 15px 20px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
    display: none;
    position: fixed;
    top: 97%;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 373px;
    gap: 19px;
    padding: 80px 0px;
}

    .nav-links.active {
        display: flex;
        animation: fadeIn 0.3s ease;
    }

    .company-name {
        font-size: 2.8rem;
    }

    .sub-companies {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .cta-container {
        flex-direction: column;
        padding: 0 20px;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .logo-container{
        width: 29%;
    }
    .nav-dropdown{
        text-align: center;
    }
    .company-name {
        font-size: 2rem;
    }
    .dropdown-menu {
        display:block;
        top: 0;
        box-shadow: none;
        position:inherit;
    }
    .navbar.scrolled {
        padding: 15px 10px;
    }
    .nav-links{
        gap: 7px;
    }
    .sub-companies {
        font-size: 1.1rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .scroll-indicator {
        font-size: 1.5rem;
    }
    .section-title {
        font-size: 1.7rem;
    }
    .abr-footer__logo {
        display: block;
        font-size: 2rem;}
}
