/* --- Global Theme & Typography Settings --- */
:root {
    --primary-color: #285375;
    --secondary-color: #7fb34e;
    --text-dark: #222222;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-dark);
    font-size: 16px;
}

/* Headings use PT Serif (matches original); UI elements use Raleway */
h1, h2, h3, h4, h5 {
    font-family: 'PT Serif', serif;
}

.font-heading, .navbar-nav, .btn, h6 {
    font-family: 'Raleway', sans-serif;
}

p {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    color: #000;
    line-height: 24px;
    font-weight: 500;
}

.text-primary-color {
    color: var(--primary-color) !important;
}

.text-secondary-color {
    color: var(--secondary-color) !important;
}

/* --- Top Header Bar --- */
.top-bar {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #222222;
    background-color: #e8edf2 !important;
    line-height: 54px;
    height: 54px;
}
.top-bar .container {
    padding-left: 0;
    padding-right: 0;
    height: 54px;
}
.contact-info span {
    font-size: 13px;
    font-weight: 600;
    color: #222222;
}

/* --- Navbar styling --- */
.navbar-nav .nav-link {
    color: #000 !important;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

/* Dropdown Menu Item Styling */
.dropdown-menu {
    border-radius: 0;
    top: 90%;
}
.dropdown-menu-item:hover {
    background-color: var(--primary-color);
    color: #fff !important;
}

/* Download Brochure Button */
.btn-download {
    font-size: 13px !important;
    font-weight: 600;
    border-width: 1.5px;
    letter-spacing: 0.5px;
}
.btn-download:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

/* --- Hero Slider / Carousel Styling --- */
.carousel-item {
    height: 80vh; 
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}


.carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(40, 83, 117, 0.45), rgba(127, 179, 78, 0.35));
    z-index: 1;
}

.carousel-caption {
    z-index: 2;
    bottom: auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700 !important;
    max-width: 800px;
    line-height: 1.2;
}

/* Hero Section Buttons */
.btn-meet {
    background-color: var(--primary-color) !important;
    color: #fff !important;
    border: 1px solid var(--primary-color);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.btn-meet:hover {
    background-color: transparent !important;
    color: #fff !important;
    border-color: #fff;
}

.btn-contact {
    background-color: transparent !important;
    color: #fff !important;
    border: 1px solid #fff !important;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.btn-contact:hover {
    background-color: #fff !important;
    color: var(--primary-color) !important;
}

/* Custom Navigation Arrow Icons */
.carousel-control-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid #ffffffa1;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}
.carousel-control-prev:hover .carousel-control-icon-box,
.carousel-control-next:hover .carousel-control-icon-box {
    background-color: #fff;
    color: var(--primary-color);
}


@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .carousel-item {
        height: 50vh;
    }
}

/* --- Laptop 14" fix: 992px–1400px --- */
@media (min-width: 992px) and (max-width: 1400px) {
    .navbar-nav .nav-link    { font-size: 13.5px; }
    .navbar-nav .nav-item    { padding-left: 4px !important; padding-right: 4px !important; }
    .btn-download            { font-size: 12px !important; padding: 0.25rem 0.6rem !important; letter-spacing: 0; }
    .contact-info span       { font-size: 12px; }
    .top-bar                 { font-size: 13px; }
}

@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0; 
        animation: fadeIn 0.3s ease; 
    }
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* --- About Section Custom Styling --- */
.bg-light-gray {
    background-color: #f5f6f7; /* Image ka exact soft grey background */
}

.about-heading {
    font-family: 'Raleway', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 2rem;
}

/* Heading ke niche ka line aur dots separator */
.custom-separator {
    position: relative;
    display: inline-block;
    width: 150px;
}
.custom-separator::before,
.custom-separator::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 45px;
    height: 1px;
    background-color: #8ec3eb; /* Light blue horizontal lines */
}
.custom-separator::before {
    left: 0;
}
.custom-separator::after {
    right: 0;
}
.custom-separator .dots {
    font-family: 'Raleway', sans-serif;
    color: #8ec3eb;
    font-size: 24px;
    line-height: 10px;
    letter-spacing: 2px;
    display: inline-block;
    vertical-align: middle;
}

/* Paragraph Content Typography */
.about-content p {
    font-family: 'Raleway', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #000;
}

/* Image text matching ke liye justify text alignment */
.text-justify {
    text-align: justify;
}

/* Strong text handles (Bold formatting) */
.about-content strong {
    font-weight: 700;
    color: #000000;
}

/* --- Value Proposition Section Styling --- */
.small-subtext {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
}

.section-title {
    font-family: 'Raleway', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: 0.5px;
}

/* Card Wrapper Styles */
.uvp-card-link {
    display: block;
}

.uvp-card {
    background: #fff;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    overflow: hidden;
    margin: 10px 0;
}

.uvp-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Card Header Text Styling */
.uvp-card-title-box {
    background-color: #fff;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f5f5f5;
}

.uvp-card-title {
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    color: #444444;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.uvp-card-link:hover .uvp-card-title {
    color: var(--primary-color);
}

/* Image Wrapper with Hover Effect */
.uvp-img-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.uvp-img-container img {
    width: 100%;
    display: block;
    height: auto;
    transition: transform 0.4s ease;
}

/* Image par black 0.3 opacity wala overlay filter create karna */
.uvp-img-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0); /* Normal state me transparent */
    transition: background-color 0.3s ease;
    z-index: 1;
}

/* Hover aane par overlay state trigger hogi */
.uvp-card-link:hover .uvp-img-container::after {
    background-color: rgba(0, 0, 0, 0.3); /* Image ke upar 0.3 black shade layer */
}

/* Optional: Slight image zoom-in on hover for premium vibe */
.uvp-card-link:hover .uvp-img-container img {
    transform: scale(1.03);
}

/* Owl Carousel Dots Customization */
.uvp-carousel .owl-dots {
    margin-top: 30px !important;
}
.uvp-carousel .owl-dot span {
    background: #ccc !important;
    width: 10px !important;
    height: 10px !important;
}
.uvp-carousel .owl-dot.active span {
    background: var(--primary-color) !important;
}


.small-subtext {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
}

.section-title {
    font-family: 'Raleway', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: 0.5px;
}

.uvp-card-link {
    display: block;
}

.uvp-card {
    background: #fff;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    overflow: hidden;
    margin: 10px 0;
}

.uvp-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.uvp-card-title-box {
    background-color: #fff;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f5f5f5;
}

.uvp-card-title {
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    color: #444444;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.uvp-card-link:hover .uvp-card-title {
    color: var(--primary-color);
}

.uvp-img-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.uvp-img-container img {
    width: 100%;
    display: block;
    height: auto;
    transition: transform 0.4s ease;
}

.uvp-img-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    transition: background-color 0.3s ease;
    z-index: 1;
}

.uvp-card-link:hover .uvp-img-container::after {
    background-color: rgba(0, 0, 0, 0.3);
}

.uvp-card-link:hover .uvp-img-container img {
    transform: scale(1.03);
}

.uvp-icon-box {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.uvp-card-link:hover .uvp-icon-box {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

.uvp-carousel .owl-dots {
    margin-top: 30px !important;
}
.uvp-carousel .owl-dot span {
    background: #ccc !important;
    width: 10px !important;
    height: 10px !important;
}
.uvp-carousel .owl-dot.active span {
    background: var(--primary-color) !important;
}

.bg-dark-theme {
    background-color: #1a1a1a;
}

.left-aligned {
    display: block !important;
    text-align: left !important;
    width: 150px;
}

.left-aligned::before {
    left: 0;
}

.left-aligned::after {
    left: 55px;
}

.left-aligned .dots {
    padding-left: 50px;
}

.feature-box {
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    color: #ffffff;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
}

.feature-text {
    font-family: "PT Serif", sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255,255,255,0.88);
    max-width: 240px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .feature-text {
        font-size: 1rem;
    }
}

.service-card {
    background: #fff;
    margin: 10px 0;
}

.service-img-box {
    width: 100%;
    overflow: hidden;
}

.service-img-box img {
    width: 100%;
    display: block;
    height: auto;
}

.service-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    border: 1px solid #eaeaea;
    padding: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 55px;
    height: 55px;
}

.service-text-box {
    flex: 1;
}

.service-card-title {
    font-family: 'Raleway', sans-serif;
    font-size: 1.2rem;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.4;
}

.service-card-desc {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #222222;
    text-align: justify;
}


.owl-dots {
    display: none !important;
}

.custom-owl-carousel {
    position: relative;
    padding: 0 40px;
}

.custom-owl-carousel .owl-nav {
    display: block !important;
}

.custom-owl-carousel .owl-nav button.owl-prev,
.custom-owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
    border-radius: 0px !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 16px !important;
    z-index: 99;
    transition: all 0.3s ease;
}

.custom-owl-carousel .owl-nav button.owl-prev {
    left: 0;
}

.custom-owl-carousel .owl-nav button.owl-next {
    right: 0;
}

.custom-owl-carousel .owl-nav button.owl-prev:hover,
.custom-owl-carousel .owl-nav button.owl-next:hover {
    background-color: var(--secondary-color) !important;
    color: #ffffff !important;
}

.cta-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.green-separator::before,
.green-separator::after,
.green-separator .dots {
    color: var(--secondary-color) !important;
    background-color: var(--secondary-color) !important;
}

.green-separator::before {
    background-color: var(--secondary-color) !important;
}

.green-separator::after {
    background-color: var(--secondary-color) !important;
}

.cta-glass-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.cta-input {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border-radius: 0px !important;
    height: 50px;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
}

.cta-input::placeholder {
    color: rgba(255, 255, 255, 0.8) !important;
}

.cta-input option {
    background-color: #1a1a1a;
    color: #fff;
}

.btn-cta-submit {
    background-color: var(--secondary-color) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 0px !important;
    height: 50px;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

.btn-cta-submit:hover {
    background-color: #6a9641 !important;
}

.cta-info-row {
    background-color: var(--secondary-color);
}

.cta-info-box {
    display: flex;
    align-items: center;
    font-family: 'Raleway', sans-serif;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #ffffff;
}

.cta-info-box i {
    font-size: 1.2rem;
}

.border-start, .border-end {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

@media (max-width: 768px) {
    .cta-info-box {
        border: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }
    .cta-info-row .col-md-4:last-child .cta-info-box {
        border-bottom: none !important;
    }
}

.site-footer {
    border-top: 1px solid #eaeaea;
}

.footer-title {
    font-family: 'Raleway', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 0.5px;
}

.footer-about-text {
    font-family: "PT Serif", sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555555;
}

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

.footer-links li a {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    color: #444444;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-links li a i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-color);
}

.footer-links li a:hover i {
    transform: translateX(3px);
}

.footer-news-title {
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    color: #333333;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.footer-news-title:hover {
    color: var(--primary-color);
}

.footer-news-date {
    font-family: 'Raleway', sans-serif;
    font-size: 0.8rem;
    color: #888888;
}

.footer-contact li {
    font-family: "PT Serif", sans-serif;
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.5;
}

.footer-contact li a {
    color: #555555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--primary-color);
}

.footer-socket {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.socket-copy {
    font-family: "PT Serif", sans-serif;
    font-size: 0.9rem;
    opacity: 0.8;
}

.socket-links a {
    font-family: 'Raleway', sans-serif;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.socket-links a:hover {
    opacity: 1;
}


/*Media Query*/
@media only screen and (max-width: 1024px) and (min-width: 768px) {
    
}
@media only screen and (max-width: 767px) {
   .carousel-caption{
    left: 5%;
    right: 5%;
   }
   .btn-contact {
        padding: 15px 10px !important;
   }
}

