/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    padding-top: 80px;
    overflow-x: hidden;
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: background 0.3s ease-in-out;
}

#home {
    background-image: url('https://res.cloudinary.com/dpeiufff8/image/upload/fl_preserve_transparency/v1742997630/background_1_hogzul.jpg?_s=public-apps');
    background-size: cover;
    background-position: center;
    height: 95vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.logo {
    margin: 0;
    padding: 0;
}

#home h1 {
    font-size: 70px;
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(26, 25, 25, 0.593);
    animation: slideIn 1.5s ease-in-out;
}
.hero-content h1 {
    font-size: 70px;
    font-weight: 900;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    animation: slideIn 1.5s ease-in-out;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#home p {
    font-size: 30px;
    font-weight: 700;
    color: #f1f1f1;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.529);
    animation: fadeIn 2s ease-in-out;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    padding: 15px 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #f68624;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover {
    color: #f39c12;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: #f68624;
}

/* Responsive Fixes */
@media (max-width: 1024px) {
    #home h1 {
        font-size: 50px;
    }
    #home p {
        font-size: 24px;
    }
    nav {
        padding: 15px 30px;
    }
    .nav-links li {
        margin: 0 10px;
    }
}

@media (max-width: 768px) {
    #home h1 {
        font-size: 40px;
    }
    #home p {
        font-size: 20px;
    }
    nav {
        padding: 10px 20px;
    }
    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 0;
        background: white;
        width: 100%;
        display: none;
        text-align: center;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        padding: 10px 0;
    }
    .nav-links li {
        margin: 10px 0;
    }
    .menu-toggle {
        display: block;
    }
}

@media (max-width: 480px) {
    #home h1 {
        font-size: 32px;
    }
    #home p {
        font-size: 18px;
    }
    .menu-toggle {
        font-size: 28px;
    }
    nav {
        padding: 10px 15px;
    }
    .nav-links {
        top: 70px;
    }
}
/* Hero Section */
.hero {
    position: relative;
    background: url('https://res.cloudinary.com/dpeiufff8/image/upload/fl_preserve_transparency/v1742997630/background_1_hogzul.jpg?_s=public-apps') 
        no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 20px;
    margin-bottom: 40px;
    animation: fadeIn 2s ease-in-out;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); /* Darker overlay for readability */
    z-index: 1;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 80%;
    margin: auto;
    animation: slideIn 1.5s ease-in-out;
}

/* Heading */
.hero h1 {
    font-size: 50px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

/* Subtext */
.hero-content p {
    font-size: 22px;
    margin: 15px auto;
    padding: 10px 20px;
    border-radius: 8px;
    text-transform: capitalize;
}

/* Button Styles */
.btn {
    display: inline-block;
    background: #f39c12;
    color: #fff;
    margin-top: 30px;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out, background 0.3s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    animation: bounceIn 1.5s ease-in-out;
}

.btn:hover {
    background: #e67e22;
    transform: scale(1.07);
}

/* Keyframe Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes bounceIn {
    0% { transform: scale(0.5); opacity: 0; }
    80% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); }
}

/* 🔹 RESPONSIVE DESIGN */

/* 🔹 Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .hero {
        height: 85vh;
        padding: 20px;
    }
    .hero h1 {
        font-size: 42px;
    }
    .hero-content p {
        font-size: 20px;
    }
    .btn {
        padding: 12px 22px;
        font-size: 17px;
    }
}

/* 🔹 Mobile Phones (480px - 767px) */
@media (max-width: 767px) {
    .hero {
        height: 80vh;
        padding: 20px;
    }
    .hero h1 {
        font-size: 32px;
        line-height: 1.3;
    }
    .hero-content p {
        font-size: 18px;
    }
    .btn {
        padding: 10px 20px;
        font-size: 16px;
    }
}

/* 🔹 Small Mobile Phones (up to 479px) */
@media (max-width: 479px) {
    .hero {
        height: 75vh;
        padding: 15px;
    }
    .hero h1 {
        font-size: 28px;
    }
    .hero-content p {
        font-size: 16px;
    }
    .btn {
        padding: 10px 18px;
        font-size: 15px;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 40px;
        line-height: 70px;
    }
    .hero-content p {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 80vh;
        padding: 20px;
    }
    .hero-content h1 {
        font-size: 36px;
        line-height: 50px;
    }
    .hero-content p {
        font-size: 18px;
        width: 90%;
    }
    .btn {
        padding: 10px 20px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 75vh;
        padding: 15px;
    }
    .hero-content h1 {
        font-size: 28px;
        line-height: 40px;
    }
    .hero-content p {
        font-size: 16px;
        width: 100%;
    }
    .btn {
        padding: 8px 18px;
        font-size: 14px;
    }
}
/* General Styling */
.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #f9f9f9;
    padding: 50px 20px;
    border-radius: 20px;
    margin: 20px;
    animation: fadeInUp 1.5s ease-in-out;
}

.section-title {
    font-size: 32px;
    color: black;
    text-align: center;
    margin-bottom: 30px;
}

/* Flexbox Layout */
.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

/* Image Section */
.about-image {
    width: 45%;
    position: relative;
    animation: fadeInLeft 1.5s ease-in-out;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Experience Box */
.experience-box {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(243, 156, 18, 0.9);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 10px 15px;
    border-radius: 5px;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

/* Information Section */
.about-info {
    width: 50%;
    padding-left: 50px;
    text-align: left;
    animation: fadeInRight 1.5s ease-in-out;
}

.about-info h2 {
    font-size: 36px;
    color: #222;
    margin-bottom: 15px;
}

.about-info p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* List Styles */
.about-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.about-list li {
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-list li::before {
    content: '\2605';
    font-size: 22px;
    color: #f39c12;
    margin-right: 10px;
}

/* Button */
.btn {
    display: inline-block;
    background: #f39c12;
    color: #fff;
    padding: 12px 25px;
    font-size: 18px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background: #e67e22;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-container {
        padding: 50px 15px;
    }

    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        width: 100%;
        margin-bottom: 20px;
    }

    .about-info {
        width: 100%;
        padding-left: 0;
        text-align: center;
    }

    .about-actions {
        flex-direction: column;
        gap: 15px;
    }
}

@media (min-width: 1024px) {

    .about-content {
        display: flex;
        justify-content: space-between;
    }

    .about-image {
        width: 40%;
    }

    .about-info {
        width: 55%;
    }
}

/* Base Styles */
.services-section {
    text-align: center;
    padding: 50px 20px; 
    border-radius: 20px; 
    margin-left: 20px;
    margin-right: 20px;
    margin-top:50px ;
    background: #f9f9f9;
}

.container {
    max-width: 1400px;
    margin: auto;
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    color: #222;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: "";
    width: 80px;
    height: 5px;
    background: #f39c12;
    display: block;
    margin: 12px auto;
}

.services-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: auto;
    animation: fadeInUp 1.2s ease-in-out;
}

.service-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 20px;
    text-align: center;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    width: 30%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 1.5s ease-in-out;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
    transition: transform 0.3s ease-in-out;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #f39c12;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 52px;
    transition: transform 0.3s ease-in-out;
}

.service-card:hover .service-icon {
    transform: rotate(10deg);
}

.service-icon img {
    width: 28px;
    height: 25px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: #222;
    margin: 25px 0 12px;
}

.service-card p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .services-section {
        padding: 30px 15px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .services-grid {
        flex-direction: column;
        gap: 30px;
    }

    .service-card {
        width: 100%; /* Full width on mobile */
        margin: auto;
        padding: 15px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-card p {
        font-size: 16px;
    }

    .service-icon {
        width: 45px;
        height: 42px;
        bottom: 10px;
        right: 10px;
    }

    .service-icon img {
        width: 22px;
        height: 20px;
    }
}

/* Laptop View */
@media (max-width: 1024px) and (min-width: 769px) {
    .services-grid {
        flex-direction: row;
        gap: 30px;
    }

    .service-card {
        width: 45%; /* Two cards per row */
    }

    .service-icon {
        width: 50px;
        height: 47px;
        bottom: 12px;
        right: 12px;
    }

    .service-icon img {
        width: 24px;
        height: 22px;
    }
}

/* Large Laptop/Desktops */
@media (min-width: 1440px) {
    .services-grid {
        gap: 40px;
    }

    .service-card {
        width: 30%; /* Three cards per row on large screens */
    }
}


/* Latest Project or case study */
.projects-section {
    padding: 50px 15px;
    text-align: center;
    background: #fff;
}
.projects h2 {
    color: #101010;
}
.container {
    max-width: 1800px;
    margin: auto;
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    color: #101010;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: "";
    width: 80px;
    height: 5px;
    background: #f39c12;
    display: block;
    margin: 12px auto;
}

.projects-wrapper {
    padding: 40px;
    background: #f9f9f9;
    border-radius: 20px;
}

.projects-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: nowrap;
    max-width: 1600px;
    padding: 20px;
}

.project-card {
    width: 32%;
    min-width: 32%;
    scroll-snap-align: start;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.project-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    height: 400px;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.3s ease-in-out;
}

.project-card:hover img {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    padding: 9px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay h3 {
    font-size: 22px;
    font-weight: bold;
    color: #ffffff;
    margin-top: 80px;
}

.project-overlay p {
    font-size: 16px;
}

.btn {
    display: inline-block;
    background: #f39c12;
    color: #fff;
    padding: 12px 25px;
    font-size: 16px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-bottom: 80px;
    transition: all 0.3s ease-in-out;
}

.btn:hover {
    background: #e67e22;
}

.arrow {
    font-size: 18px;
    margin-left: 5px;
}

/* Laptop View - max-width 1200px */
@media (max-width: 1200px) {
    .projects-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .project-card {
        width: 48%;
        min-width: 48%;
        margin-bottom: 30px;
    }

    .project-overlay h3 {
        font-size: 18px; /* Adjusted title size */
        margin-top: 60px;
    }

    .project-overlay p {
        font-size: 15px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Mobile View - max-width 768px */
@media (max-width: 768px) {
    .projects-section {
        padding: 50px 15px;
    }

    .projects-grid {
        flex-direction: column;
        gap: 30px;
    }

    .project-card {
        width: 90%;
        min-width: 90%;
        margin: 0 auto; /* Center cards */
    }

    .project-overlay h3 {
        font-size: 20px; /* Adjusted title size for mobile */
        margin-top: 60px;
    }

    .project-overlay p {
        font-size: 14px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
        margin-bottom: 50px; /* Adjust button spacing */
    }

    .section-title {
        font-size: 30px; /* Smaller title size for mobile */
    }

    .projects-wrapper {
        padding: 20px;
    }
}


/* General Section Styling */
.why-choose-us {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background: #f8f9fa; /* Light background for contrast */
    min-height: 700px; /* Flexible height */
    padding: 50px 20px;
    border-radius: 20px;
    margin: 20px;
}

/* Container: Responsive Flexbox */
.container1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
}

/* Left Section Styling */
.left-section {
    flex: 1;
    text-align: left;
}

.circle {
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto; /* Center in mobile */
}

.circle img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.description {
    font-size: 18px;
    color: #414141e0;
    font-weight: 100;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    max-width: 450px;
}

/* Right Section: Grid Layout for Better Responsiveness */
.right-section {
    flex: 1.5;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* Feature Box */
.feature {
    display: flex;
    align-items: center;
    background: white;
    padding: 15px;
    border-radius: 10px;
    height: 180px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.feature:hover {
    transform: translateY(-5px); /* Hover Effect */
}

/* Feature Icons */
.icon-circle {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    margin-right: 15px;
}

/* Color Themes */
.orange {
    background: #f7931e;
}

.dark-blue {
    background: #223541;
}

.gray {
    background: #223541;
}

/* Feature Text */
.feature-text h3 {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    margin: 0;
}

.feature-text p {
    font-size: 15px;
    color: #414040;
    margin-top: 5px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/* Responsive Design */
@media (max-width: 1024px) { /* For Tablets */
    .container1 {
        flex-direction: column;
        text-align: center;
    }
    
    .right-section {
        grid-template-columns: 1fr; /* Stack Features */
    }
    
    .feature {
        width: 100%;
    }
}

@media (max-width: 768px) { /* For Mobile Devices */
    .container1 {
        flex-direction: column;
        text-align: center;
    }

    .left-section {
        text-align: center;
    }

    .circle {
        margin: auto;
    }

    .right-section {
        grid-template-columns: 1fr; /* Stack Features */
    }

    .feature {
        width: 100%;
        height: auto; /* Flexible Height */
        padding: 20px;
        text-align: left;
    }

    .feature-text h3 {
        font-size: 16px;
    }

    .feature-text p {
        font-size: 14px;
    }
}


/* Orange Underline */
.team-section h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 5px;
    background: #f39c12;
    margin: 10px auto;
}

.founder-section {
    text-align: center;
    background-color: #f9f9f9;
    margin-top: 60px;padding: 80px 20px; border-radius: 20px; margin-left: 20px;margin-right: 20px;
}

.founder-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.founder-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    text-align: center;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.founder-card:hover {
    transform: scale(1.05);
}

.founder-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f39c12;
}

.founder-name {
    font-size: 22px;
    font-weight: bold;
    color: #f39c12;
    margin: 10px 0;
}

.founder-role {
    font-size: 16px;
    font-weight: bold;
    color: #444;
    margin-bottom: 5px;
}

.founder-description {
    font-size: 14px;
    color: #666;
}

/* contact section */

/* Section Background with Image */
#contact {
    background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSN4tL2blCaXksho9dIG8pD_YvPQjP5l5e4vQ&s');
    background-size: cover;
    background-position: center;
    background-color: #f3f3f3; /* Fallback color */
    position: relative;
    text-align: center;
    animation: fadeIn 2s ease-in-out;
  }
  
  /* FadeIn animation */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Contact Section Styling */
  .contact-section {
    background: #f9f9f9;
    border-radius: 20px;
    padding: 80px 20px;
    max-width: 1300px;
    margin: 60px 20px;
  }
  
  /* Title Styling */
  .section-title1 {
    color: #222;
    font-size: 42px;
    font-weight: bold;
    position: relative;
    margin-bottom: 40px;
  }
  
  .section-title1::after {
    content: "";
    width: 80px;
    height: 5px;
    background: #f39c12;
    display: block;
    margin: 12px auto 0;
  }
  
  /* Layout Container */
  .container4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    width: 100%;
  }
  
  /* Contact Info Box */
  .contact-info,
  .contact-form {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Info Text */
  .contact-info p {
    font-size: 16px;
    color: #333;
    margin-bottom: 20px;
  }
  
  .info-list {
    list-style: none;
    padding: 0;
  }
  
  .info-list li {
    font-size: 14px;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
  }
  
  .info-list i {
    color: #f39c12;
    margin-right: 10px;
  }
  
  /* Contact Form Styling */
  .contact-form form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    transition: 0.3s;
  }
  
  .contact-form textarea {
    height: 80px;
    resize: none;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #f39c12;
    outline: none;
  }
  
  .contact-form button {
    background: #f39c12;
    color: white;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .contact-form button:hover {
    background: #e67e22;
  }
  
  /* -------------------- RESPONSIVE STYLES -------------------- */
  
  /* Tablet & below */
  @media (max-width: 1024px) {
    .container4 {
      flex-direction: column;
      gap: 30px;
    }
  
    .contact-info,
    .contact-form {
      width: 100%;
      padding: 20px;
    }
  
    .section-title1 {
      font-size: 36px;
    }
  }
  
  /* Medium Mobiles (480px - 600px) */
  @media (max-width: 600px) {
    .contact-section {
      padding: 60px 15px;
      margin-top: 60px;
    }
  
    .section-title1 {
      font-size: 30px;
    }
  
    .contact-info p,
    .info-list li {
      font-size: 13px;
    }
  
    .contact-form input,
    .contact-form textarea {
      font-size: 14px;
      padding: 10px;
    }
  
    .contact-form button {
      font-size: 15px;
      padding: 10px;
    }
  
    .contact-info,
    .contact-form {
      margin-bottom: 20px;
    }
  }
  
  /* Small Mobiles (below 480px) */
  @media (max-width: 480px) {
    .section-title1 {
      font-size: 26px;
    }
  
    .contact-form input,
    .contact-form textarea {
      font-size: 13px;
      padding: 8px;
    }
  
    .contact-form button {
      font-size: 14px;
      padding: 10px;
    }
  
    .info-list li {
      font-size: 12px;
    }
  
    .contact-section {
      padding: 50px 10px;
      margin-top: 50px;
    }
  }
  
/* Small Mobiles (below 480px) */
@media (max-width: 480px) {
    .section-title1 {
      font-size: 26px;
    }
  
    .contact-form input,
    .contact-form textarea {
      font-size: 12px;
      padding: 6px;
    }
  
    .contact-form button {
      font-size: 14px;
      padding: 10px;
    }
  
    .info-list li {
      font-size: 12px;
    }
  
    .contact-section {
      padding: 60px 15px;
      margin-top: 70px;
    }
  }

/* Footer Styling */
.footer {
    background-color:#243843;
    color: white;
    padding: 50px 20px;
    text-align: center;

}

/* Footer Main Container */
.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
    text-align: left;
}

/* Footer Sections */
.footer-logo,
.footer-links,
.footer-contact {
    width: 22%;
}

/* Company Info */
.footer-logo h2 {
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.footer-logo h2 i {
    margin-right: 8px;
    color: #f39c12;
}

.footer-logo p {
    font-size: 16px;
    color: #ccc;
    margin: 10px 0;
}

.footer-logo i {
    color: #f39c12;
    margin-right: 8px;
}

/* Footer Links */
.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #f39c12;
}

/* Contact Info */
.footer-contact p {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 10px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #222;
    color: white;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    background-color: #f39c12;
}

/* Footer Bottom */
.footer-rights {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    margin-top: 20px;
    font-size: 14px;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo,
    .footer-links,
    .footer-contact {
        width: 100%;
        margin-bottom: 20px;
    }

    .social-icons {
        justify-content: center;
    }
}

