/* Basic Resets & Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

:root {
    --primary-color: #0056b3; /* A shade of blue, adjust as needed */
    --secondary-color: #007bff; /* Lighter blue */
    --accent-color: #ffc107; /* Gold/yellow for highlights */
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --text-color: #495057;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

/*a:hover {
    color: var(--secondary-color);
}*/

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    color: var(--dark-color);
    margin-bottom: 15px;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 15px;
    font-size: 0.9em;
}


/* Header */
.header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px; /* Adjust as needed */
}

.main-nav .nav-links {
    display: flex;
}

.main-nav .nav-links li {
    margin-left: 30px;
}

.main-nav .nav-links a {
    color: var(--dark-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

.main-nav .nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav .nav-links a:hover::after,
.main-nav .nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none; /* Hidden on desktop */
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--dark-color);
    transition: all 0.3s ease;
}

/* Animated Banner */
.hero-banner {
    position: relative;
    width: 100%;
    height: 600px; /* Adjust height as needed */
    overflow: hidden;
    margin-top: 80px; /* To account for fixed header */
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

/* Example background images */
.slide-1 { background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url('../img/bn3.jpeg'); }
.slide-2 { background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url('../img/bn2.jpeg'); }
.slide-3 { background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url('../img/bn1.jpeg'); }

.banner-content {
    text-align: center;
    max-width: 800px;
    padding: 20px;
}
@media(max-width: 1000px){
.slide-1,.slide-2,.slide-3{
    background-position: right;
    background-size: cover;
}
}

@media(min-width: 1000px){
    .slide {
    align-items:center;
    justify-content: flex-start;
    }
   .banner-content {
    text-align: left;
    max-width: 800px;
    margin-left: 50px;
    margin-top: 100px;
}
 
}
.banner-content h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    opacity: 0; /* For animation */
    transform: translateY(20px); /* For animation */
    animation: fadeInSlideUp 1s forwards;
}

.banner-content p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f1f1f1;
    opacity: 0; /* For animation */
    transform: translateY(20px); /* For animation */
    animation: fadeInSlideUp 1s 0.2s forwards;
}

.banner-content .btn {
    opacity: 0; /* For animation */
    transform: translateY(20px); /* For animation */
    animation: fadeInSlideUp 1s 0.4s forwards;
}

@keyframes fadeInSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 3;
    padding: 0 20px;
}

.nav-arrow {
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 1.5em;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.nav-arrow:hover {
    background: rgba(0,0,0,0.8);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background: var(--accent-color);
}






/* Footer */
.footer {
    background: var(--dark-color);
    color: #f1f1f1;
    padding: 60px 0 20px;
}

.footer .container {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.footer-col p, .footer-col li {
    font-size: 0.95em;
    line-height: 1.8;
}

.footer-col ul {
    padding-left: 0;
}

.footer-col ul li a {
    color: #f1f1f1;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.social-links a {
    color: #fff;
    font-size: 1.5em;
    margin-right: 15px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.footer-col.contact-col p i {
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9em;
}

.footer-bottom a {
    color: #f1f1f1;
    margin: 0 10px;
}

/* Animated Call to Action (General Class) */
.animated-cta {
    position: relative;
    overflow: hidden;
}

.animated-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.2);
    transition: left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.animated-cta:hover::before {
    left: 100%;
}

.animated-cta span {
    position: relative;
    z-index: 2;
}

/* Lazy Loading placeholder style */
.lazy-load {
    background-color: #e0e0e0;
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%239e9e9e%22%20d%3D%22M19%205v14H5V5h14m0-2H5c-1.1%200-2%20.9-2%202v14c0%201.1.9%202%202%202h14c1.1%200%202-.9%202-2V5c0-1.1-.9-2-2-2zM14.17%209.5L12%2011.67l-3.17-3.17L5%2012.33V19h14v-6.67L14.17%209.5z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: center;
}

/* For images that are lazily loaded directly inside an element */
.lazy-load img {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.lazy-load.loaded img {
    opacity: 1;
}





@media (max-width: 992px) {
    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        width: 100%;
        margin-top: 15px;
    }

    .main-nav .nav-links {
        flex-direction: column;
        width: 100%;
        display: none; /* Hidden by default for mobile */
        text-align: center;
    }

    .main-nav .nav-links.active {
        display: flex;
    }

    .main-nav .nav-links li {
        margin: 10px 0;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 25px;
    }

    .about-brief .container {
        flex-direction: column;
    }

    .about-content, .about-image {
        min-width: unset;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
        display: flex;
        margin-top: 20px;
    }
}
* --- Responsive Design (Basic Example) --- */
@media (max-width: 992px) {
    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        width: 100%;
        margin-top: 15px;
    }

    .main-nav .nav-links {
        flex-direction: column;
        width: 100%;
        display: none; /* Hidden by default for mobile */
        text-align: center;
    }

    .main-nav .nav-links.active {
        display: flex;
    }

    .main-nav .nav-links li {
        margin: 10px 0;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 20px;
        top: 25px;
    }

    .about-brief .container {
        flex-direction: column;
    }

    .about-content, .about-image {
        min-width: unset;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
        display: flex;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        height: 450px;
    }

    .banner-content h1 {
        font-size: 2.5em;
    }

    .banner-content p {
        font-size: 1em;
    }

    .section-title {
        font-size: 2em;
    }

    .cta-section h2 {
        font-size: 2em;
    }
}






/*title head*/
.title-head{
    background: url('../img/ti.jpg');
    background-position: center;
    background-size: cover;
    padding: 30px;
    min-height: 150px;
    margin:10px;
    margin-top: 10px;
}
.title-head h1{
    font-size: 40px;
    text-align: center;
    margin-top: 55px;
    color: white;
}