* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: url('/static/FALLS.jpg') center / cover no-repeat fixed;
    color: #fff;
    line-height: 1.6;
    min-height: 100vh;
}

/* Navbar Styles */
.navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ff9800;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo:hover .logo-icon img {
    transform: scale(1.1);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin: 0 15px;
    position: relative;
}

.nav-links a {
    color: black;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 5px 10px;
    border-radius: 4px;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ff9800;
    transition: width 0.3s;
}

.nav-links a:hover:after {
    width: 100%;
}

/* Dropdown menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 8px;
    overflow: hidden;
    top: 100%;
    left: 0;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background 0.3s;
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Orange Contact Button */
.contact-btn {
    background-color: #ff9800;
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.contact-btn:hover {
    background-color: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 2px 0;
    border-radius: 5px;
    transition: 0.3s;
}

/* Carousel Styles */
.carousel-container {
    width: 100%;
    max-width: 95%;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    min-width: 100%;
    height: 500px;
    position: relative;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    object-position: center;
}

.carousel-caption {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    padding: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    animation: fadeInUp 1s ease;
}

.carousel-caption h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.carousel-caption p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 100;
    transition: background 0.3s;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control:hover {
    background: rgba(0, 0, 0, 0.8);
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}

/* Thumbnails inside carousel */
.carousel-thumbnails {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 100;
}

.thumbnail {
    width: 80px;
    height: 60px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
    border-radius: 5px;
    overflow: hidden;
    border: 3px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.1);
}

.thumbnail.active {
    opacity: 1;
    border-color: #ff9800;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Feature Section */
.feature-section {
    display: flex;
    justify-content: space-evenly;
    margin: 50px auto;
    padding: 0 20px;
    flex-wrap: wrap;
    max-width: 98%;
}

.feature-item {
    text-align: center;
    width: 22%;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 90px;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.icon-number {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    font-size: 40px;
}

.feature-number {
    font-size: 24px;
    font-weight: 700;
    color: #ff9800;
    background: rgba(255, 255, 255, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-item h5 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
    color: #fff;
    text-align: center;
}

/* Section Title Common Styles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title h1:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 3px;
    background: #ff9800;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

/* Testimonial Section */
.testimonial-section {
    padding: 80px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    margin-top: 50px;
}

.testimonial-carousel {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-item {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.testimonial-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}

.testimonial-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-text {
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.8;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.testimonial-author {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.testimonial-role {
    color: #ff9800;
    font-style: italic;
}

/* Team Section */
.team-section {
    padding: 80px 20px;
    text-align: center;
}

.team-container {
    max-width: 95%;
    margin: 0 auto;
}

.team-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    max-height: 600px;
    overflow-y: auto;
    padding: 10px;
}

/* Custom scrollbar for team row */
.team-row::-webkit-scrollbar {
    width: 8px;
}

.team-row::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.team-row::-webkit-scrollbar-thumb {
    background: #ff9800;
    border-radius: 10px;
}

.team-row::-webkit-scrollbar-thumb:hover {
    background: #e68900;
}

.team-item {
    width: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.team-item:hover {
    transform: translateY(-10px);
}

.team-img-container {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.team-social {
    position: absolute;
    top: 50%;
    left: -40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.9);
    transition: left 0.5s;
    border-radius: 0 5px 5px 0;
}

.team-social a {
    color: #ff9800;
    padding: 10px;
    text-decoration: none;
    transition: all 0.3s;
}

.team-social a:hover {
    color: white;
    background: #ff9800;
}

.team-item:hover .team-social {
    left: 0;
}

.team-info {
    padding: 20px;
    border-top: 5px solid rgba(255, 255, 255, 0.1);
    min-height: 90px;
}

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

.team-info small {
    color: #ff9800;
    font-style: italic;
}

/* Portfolio Section */
.portfolio-section {
    max-width: 95%;
    margin: 40px auto;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    max-height: 600px;
    overflow-y: auto;
}

.portfolio-section::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.portfolio-section::-webkit-scrollbar-thumb {
    background: #ff9800;
    border-radius: 10px;
}

.portfolio-section::-webkit-scrollbar-thumb:hover {
    background: #e68900;
}

.container {
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 12px 25px;
    background: rgba(233, 196, 106, 0.1);
    color: #f8f8f8;
    border: 2px solid #e9c46a;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover {
    background: rgba(233, 196, 106, 0.2);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: #e9c46a;
    color: #2c3e50;
    box-shadow: 0 0 15px rgba(233, 196, 106, 0.5);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.portfolio-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-img-container {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 157, 143, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.portfolio-actions {
    display: flex;
    gap: 15px;
}

.portfolio-action-btn {
    width: 50px;
    height: 50px;
    background: #e9c46a;
    color: #2c3e50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.portfolio-action-btn:hover {
    background: #2c3e50;
    color: #e9c46a;
    transform: scale(1.1);
}

.portfolio-info {
    padding: 20px;
}

.portfolio-category {
    display: inline-block;
    background: rgba(233, 196, 106, 0.15);
    color: #e9c46a;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.portfolio-title {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #f8f8f8;
}

/* Quote Section */
.quote-container {
    max-width: 95%;
    margin: 40px auto;
    padding: 0 20px;
}

.quote-row {
    display: flex;
    flex-wrap: wrap;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
}

.image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 20px;
    text-align: center;
}

.image-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-text {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    display: flex;
    align-items: center;
}

.form-wrapper {
    width: 100%;
}

.quote-heading {
    font-size: 28px;
    color: #1a2a6c;
    margin-bottom: 10px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.form-row > * {
    flex: 1;
    min-width: 200px;
}

.form-input {
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: #1a2a6c;
    box-shadow: 0 0 0 3px rgba(26, 42, 108, 0.2);
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

.submit-button {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Why Choose Us Section */
.WHYfeature {
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    margin: 5%;
    width: 90%;
    background-color: white;
}

.WHYsection-title {
    text-align: center;
    margin-bottom: 40px;
}

.WHYsection-title h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    position: relative;
}

.WHYsection-title h1::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #3498db;
    margin: 10px auto 0;
    border-radius: 2px;
}

.whyrow {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
}

#WHYfeature-text {
    flex: 1 1 48%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.whycontent {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.whycontent p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 30px;
    flex: 1;
}

.WHYfeatures {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-evenly;
    color: black;
    
}

.WHYfeature-itemS {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 15px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex: 1 1 45%;
    transition: all 0.3s ease;
    min-height: 80px;
    justify-content: space-evenly;
    color: black;
}

.WHYfeature-itemS:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
}

#feature-image {
    flex: 1 1 48%;
    min-width: 300px;
    display: flex;
    align-items: stretch;
}

.image-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    flex: 1;
    display: flex;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

#feature-image img:hover {
    transform: scale(1.03);
}

/* About Us Section */
#a {
    background-color: #fff;
    padding: 80px 0;
    margin: 60px 0;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.about {
   
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 40px;
}

.col {
    flex: 1 1 45%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover .about-image {
    transform: scale(1.03);
}

.about-text {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.content {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.aboutdes {
    flex: 1;
}

.aboutdes p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    text-align: justify;
}

.featuresa {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.feature-itema {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    flex: 1;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-text h2 {
    font-size: 32px;
    color: #1a2a6c;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.content small {
    margin-top: auto;
    color: #888;
    font-size: 14px;
}

/* Footer */
footer {
    background: #222;
    color: #ddd;
    padding: 50px 20px 20px;
    font-family: Arial, sans-serif;
    margin: 5%;
    width: 90%;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
    border-left: 3px solid #007bff;
    padding-left: 8px;
}

.footer-col p,
.footer-col li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-col ul {
    list-style: none;
}

.footer-col a {
    text-decoration: none;
    color: #ddd;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #007bff;
}

.social-icons {
    display: flex;
    gap: 15px;
    font-size: 20px;
    margin-top: 10px;
}

.subscribe-form {
    display: flex;
    margin-top: 10px;
}

.subscribe-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

.subscribe-form button {
    padding: 10px 15px;
    border: none;
    background: #007bff;
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.subscribe-form button:hover {
    background: #0056b3;
}

.footer-bottom {
    border-top: 1px solid #444;
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
}

.footer-bottom a {
    color: #007bff;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.top-strip {
    padding: 8px 20px;
    font-size: 14px;
}

.top-strip-container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-strip .social-icons {
    gap: 10px;
}

/* Icon Box Common Styles */
.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 40px;
}

/* Animations */
.fadeIn {
    animation: fadeIn 0.5s ease forwards;
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .carousel-caption h3 {
        font-size: 2rem;
    }
    
    .carousel-caption p {
        font-size: 1.1rem;
    }
    
    .feature-item {
        width: 45%;
        margin-bottom: 20px;
    }
    
    .team-item {
        width: 45%;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .whyrow {
        flex-direction: column;
        text-align: center;
    }

    #WHYfeature-text {
        flex: 1 1 100%;
    }

    #feature-image {
        flex: 1 1 100%;
        margin-top: 30px;
    }

    .WHYfeatures {
        justify-content: center;
    }
    
    .WHYfeature-itemS {
        flex: 1 1 100%;
        min-height: 70px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.8rem 1rem;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        background: rgba(44, 62, 80, 0.95);
        width: 100%;
        flex-direction: column;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .dropdown-content {
        position: static;
        display: none;
        background: rgba(255, 255, 255, 0.7);
        margin-top: 10px;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .carousel-item {
        height: 400px;
    }

    .carousel-caption {
        bottom: 60px;
    }
    
    .carousel-caption h3 {
        font-size: 1.8rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .thumbnail {
        width: 70px;
        height: 50px;
    }
    
    .carousel-thumbnails {
        display: none;
    }
    
    .carousel-caption {
        display: none;
    }
    
    .feature-item {
        width: 100%;
    }

    .section-title h1 {
        font-size: 2rem;
    }

    .testimonial-img-container {
        flex-direction: column;
    }
    
    .team-item {
        width: 100%;
    }
    
    .team-social {
        flex-direction: row;
        left: 0;
        top: auto;
        bottom: 0;
        width: 100%;
        transform: none;
        border-radius: 0;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-icon img {
        width: 35px;
        height: 35px;
    }
    
    .logo {
        font-size: 1.6rem;
        gap: 8px;
    }
    
    .row {
        flex-direction: column;
    }
    
    .col {
        flex: 1 1 100%;
    }
    
    .featuresa {
        flex-direction: column;
    }
    
    .feature-itema {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .carousel-item {
        height: 300px;
    }

    .logo {
        font-size: 1.4rem;
    }

    .logo-icon img {
        width: 30px;
        height: 30px;
    }
    
    .carousel-control {
        width: 40px;
        height: 40px;
        padding: 10px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    .section-title h1 {
        font-size: 1.8rem;
    }
    
    .portfolio-section {
        padding: 30px 15px;
    }
    
    .portfolio-filters {
        gap: 10px;
    }
    
    #a {
        padding: 60px 0;
        margin: 40px 0;
    }
    
    .feature-itema {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .WHYfeature-itemS {
        flex-direction: column;
        text-align: center;
        min-height: auto;
        padding: 20px 15px;
    }
    
    .icon-box {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .whycontent p {
        font-size: 1rem;
    }
    
    .aboutdes p {
        font-size: 16px;
    }
}
/*-----------------------------------------------------------------------------------------------------*/

/* About Us Section */
#a {
    background-color: #fff;
    padding: 80px 0;
    margin: 5%;
    width: 90%;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

#a .section-title {
    text-align: center;
    margin-bottom: 60px;
}

#a .section-title h1 {
    font-size: 36px;
    color: #1a2a6c;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

#a .section-title h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #1a2a6c, #b21f1f);
    border-radius: 2px;
}



#a .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a2a6c, #b21f1f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 40px;
}

.stayintouch {
    display: relative;
    width: 100%;
}

.stayintouch input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
    border-right: none;
}

.stayintouch button {
    padding: 10px 15px;
    border: none;
    background: #007bff;
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}


/* Mobile Screen Styles */
@media only screen and (max-width: 768px) {
    #a {
        padding: 20px 15px;
    }

    .section-title h1 {
        font-size: 28px;
        text-align: center;
        margin-bottom: 20px;
    }

    .about .row {
        flex-direction: column;
    }

    .about .col {
        width: 100%;
        padding: 0;
    }

    .image-container {
        text-align: center;
        margin-bottom: 25px;
    }

    .about-image {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
    }

    .about-text {
        text-align: center;
    }

    .aboutdes p {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 25px;
    }

    .WHYfeatures {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .WHYfeature-itemS {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 15px;
        background: #f8f9fa;
        border-radius: 10px;
        width: 100%;
        max-width: 250px;
    }

    .icon-box {
        font-size: 24px;
    }

    .WHYfeature-text h2 {
        font-size: 18px;
        margin: 0;
        text-align: center;
    }

    .WHYfeature-text h2:first-child {
        font-size: 24px;
        font-weight: bold;
        color: #333;
    }

    .WHYfeature-text h2:last-child {
        font-size: 14px;
        color: #666;
        font-weight: normal;
    }
}

/* Mobile Screen Styles - Specific breakpoints */
@media only screen and (max-width: 480px) {
    #a {
        padding: 15px 10px;
    }

    .section-title h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .aboutdes p {
        font-size: 14px;
        line-height: 1.5;
        word-wrap: break-word;       /* ✅ Break long words */
        overflow-wrap: break-word;   /* ✅ Modern equivalent */
        word-break: break-word;      /* ✅ Fallback for older browsers */
        hyphens: auto;               /* ✅ Adds natural hyphenation where supported */
        text-align: justify;         /* Optional — makes text neat on mobile */
    }


    .WHYfeature-itemS {
        padding: 12px;
        max-width: 200px;
    }

    .WHYfeature-text h2:first-child {
        font-size: 20px;
    }

    .WHYfeature-text h2:last-child {
        font-size: 12px;
    }
}

@media only screen and (min-width: 481px) and (max-width: 768px) {
    #a {
        padding: 20px 15px;
    }

    .section-title h1 {
        font-size: 26px;
    }

    .aboutdes p {
        font-size: 14px;
        line-height: 1.5;
        word-wrap: break-word;       /* ✅ Break long words */
        overflow-wrap: break-word;   /* ✅ Modern equivalent */
        word-break: break-word;      /* ✅ Fallback for older browsers */
        hyphens: auto;               /* ✅ Adds natural hyphenation where supported */
        text-align: justify;         /* Optional — makes text neat on mobile */
    }


    .WHYfeature-itemS {
        max-width: 220px;
    }
}
