* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Top Header Bar */
.top-header {
    background-color: #1a2a4a;
    padding: 10px 0;
    color: #fff;
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    width: 100%;
}

.header-left {
    display: flex;
    gap: 30px;
    align-items: center;
}

.top-header .contact-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    white-space: nowrap;
    color: #fff;
    background: none;
    padding: 0;
    border: none;
    box-shadow: none;
}

.top-header .contact-info i {
    font-size: 12px;
    color: #fff;
}

.header-right {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s;
}

.social-icon:first-child {
    background-color: #1877f2;
}

.social-icon:last-child {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon:hover {
    transform: scale(1.1);
}

/* Navigation Bar */
.navbar {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

.nav-left {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 60px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 20px;
    font-weight: bold;
    color: #1a2a4a;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 11px;
    color: #f4a261;
    letter-spacing: 0.5px;
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: #f4a261;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #1a2a4a;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #1a2a4a;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.enquiry-btn {
    background-color: #1a2a4a;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 5px;
    transition: background-color 0.3s;
    letter-spacing: 0.5px;
}

.enquiry-btn:hover {
    background-color: #2a3a5a;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 42, 74, 0.85) 0%, rgba(26, 42, 74, 0.6) 50%, transparent 100%);
    display: flex;
    align-items: center;
    padding: 0 60px;
}

.hero-content {
    max-width: 650px;
    color: #fff;
}

.hero-tagline {
    display: inline-block;
    color: #f4a261;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 52px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 17px;
    line-height: 1.8;
    color: #fff;
    opacity: 0.95;
}

/* Hero Navigation */
.hero-navigation {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.hero-nav-btn {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #1a2a4a;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.hero-nav-btn:hover {
    background-color: #fff;
    transform: scale(1.1);
}

/* Who We Are Section */
.who-we-are-section {
    padding: 100px 0;
    background-color: #fff;
}

.who-header {
    text-align: center;
    margin-bottom: 60px;
}

.who-subheading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.who-subheading span {
    color: #f4a261;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.who-subheading-line {
    flex: 1;
    height: 2px;
    background-color: #f4a261;
    position: relative;
    max-width: 50px;
}

.who-subheading-line::after {
    content: '...';
    position: absolute;
    right: -20px;
    top: -8px;
    color: #f4a261;
    font-size: 20px;
    line-height: 1;
}

.who-heading {
    font-size: 42px;
    font-weight: bold;
    color: #1a2a4a;
    line-height: 1.3;
    margin: 0;
}

.who-heading-highlight {
    color: #1a2a4a;
}

.who-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    flex-direction: row;
}

.who-left {
    flex: 0 0 48%;
    position: relative;
}

.who-image-collage {
    position: relative;
    width: 100%;
}

.who-collage-circle {
    width: 100%;
    max-width: 500px;
    height: 500px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.who-collage-image {
    position: absolute;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.who-collage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.who-collage-image.who-img-1 {
    width: 280px;
    height: 280px;
    top: 0;
    left: 0;
    z-index: 3;
}

.who-collage-image.who-img-2 {
    width: 200px;
    height: 200px;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.who-collage-image.who-img-3 {
    width: 240px;
    height: 240px;
    bottom: 30px;
    right: 40px;
    z-index: 1;
}

.who-collage-image.who-img-4 {
    width: 200px;
    height: 200px;
    bottom: 20px;
    left: 20px;
    z-index: 2;
}

.who-collage-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 10;
}

.who-collage-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.who-right {
    flex: 0 0 48%;
    padding-left: 20px;
}

.who-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.who-text-with-icon {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.who-text-icon {
    width: 50px;
    height: 50px;
    background-color: #f4a261;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 5px;
}

.who-text-icon i {
    color: #fff;
    font-size: 24px;
}

.who-text-with-icon .who-text {
    margin-bottom: 0;
    flex: 1;
}

.who-btn {
    display: inline-block;
    background-color: #1a2a4a;
    color: #fff;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 5px;
    transition: background-color 0.3s;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.who-btn:hover {
    background-color: #2a3a5a;
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.vm-header {
    text-align: center;
    margin-bottom: 50px;
}

.vm-subheading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.vm-main-heading {
    font-size: 42px;
    font-weight: bold;
    color: #1a2a4a;
    margin: 0;
}

.vm-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.vm-tabs {
    display: inline-flex;
    background-color: #fff;
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    gap: 5px;
}

.vm-tab {
    padding: 14px 50px;
    font-size: 16px;
    font-weight: 600;
    color: #1a2a4a;
    background-color: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.vm-tab.active {
    background-color: #f4a261;
    color: #1a2a4a;
    box-shadow: 0 2px 8px rgba(244, 162, 97, 0.3);
}

.vm-tab:not(.active):hover {
    background-color: #f5f5f5;
}

.vm-content-wrapper {
    position: relative;
    min-height: 600px;
}

.vm-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.vm-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vm-content-inner {
    display: flex;
    gap: 50px;
    align-items: center;
    background-color: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.vm-image-container {
    flex: 0 0 45%;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.vm-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vm-content.active .vm-image-container img {
    transform: scale(1);
}

.vm-text-container {
    flex: 1;
}

.vm-content-heading {
    font-size: 32px;
    font-weight: bold;
    color: #1a2a4a;
    margin-bottom: 25px;
    line-height: 1.3;
}

.vm-text {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    text-align: left;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 13px;
    }
    
    .enquiry-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

@media (max-width: 968px) {
    .container {
        padding: 0 30px;
    }
    
    .top-header {
        padding: 8px 0;
    }
    
    .top-header .container {
        padding: 0 30px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .header-left {
        gap: 20px;
    }
    
    .top-header .contact-info {
        font-size: 13px;
    }
    
    .navbar .container {
        padding: 12px 30px;
        flex-wrap: wrap;
    }
    
    .logo img {
        height: 50px;
    }
    
    .logo-main {
        font-size: 18px;
    }
    
    .logo-sub {
        font-size: 10px;
    }
    
    .nav-center {
        order: 3;
        width: 100%;
        margin-top: 15px;
    }
    
    .nav-menu {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-menu a {
        font-size: 12px;
    }
    
    .nav-right {
        margin-left: auto;
    }
    
    .enquiry-btn {
        padding: 10px 18px;
        font-size: 12px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-overlay {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .top-header {
        padding: 8px 0;
    }
    
    .top-header .container {
        flex-direction: column;
        gap: 12px;
        padding: 8px 20px;
        text-align: center;
    }
    
    .header-left {
        display: none;
    }
    
    .top-header .contact-info {
        font-size: 12px;
        justify-content: center;
    }
    
    .header-right {
        justify-content: center;
        width: 100%;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .navbar {
        padding: 12px 0;
    }
    
    .navbar .container {
        flex-wrap: wrap;
        padding: 10px 20px;
        gap: 10px;
    }
    
    .nav-left {
        width: 100%;
        justify-content: center;
    }
    
    .logo {
        gap: 12px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .logo-main {
        font-size: 16px;
    }
    
    .logo-sub {
        font-size: 9px;
    }
    
    .nav-center {
        order: 3;
        width: 100%;
        margin-top: 10px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        row-gap: 8px;
    }
    
    .nav-menu a {
        font-size: 11px;
        padding: 5px 8px;
    }
    
    .nav-right {
        display: none;
    }
    
    .enquiry-btn {
        padding: 10px 20px;
        font-size: 11px;
        width: 100%;
        text-align: center;
        max-width: 200px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-overlay {
        padding: 0 20px;
    }
    
    .hero-navigation {
        right: 15px;
    }
    
    .hero-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .top-header .container {
        padding: 6px 15px;
        gap: 8px;
    }
    
    .top-header .contact-info {
        font-size: 11px;
        gap: 5px;
    }
    
    .top-header .contact-info i {
        font-size: 10px;
    }
    
    .social-icon {
        width: 26px;
        height: 26px;
        font-size: 12px;
    }
    
    .navbar .container {
        padding: 8px 15px;
    }
    
    .logo {
        gap: 10px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .logo-main {
        font-size: 14px;
    }
    
    .logo-sub {
        font-size: 8px;
    }
    
    .nav-menu {
        gap: 8px;
        row-gap: 6px;
    }
    
    .nav-menu a {
        font-size: 10px;
        padding: 4px 6px;
    }
    
    .enquiry-btn {
        padding: 8px 16px;
        font-size: 10px;
        max-width: 180px;
    }
    
    .hero-title {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 13px;
    }
    
    .hero-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    /* Who We Are Section Responsive */
    .who-we-are-section {
        padding: 60px 0;
    }
    
    .who-header {
        margin-bottom: 40px;
    }
    
    .who-heading {
        font-size: 32px;
    }
    
    .who-wrapper {
        flex-direction: column;
        gap: 50px;
    }
    
    .who-left {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .who-right {
        flex: 0 0 100%;
        padding-left: 0;
        text-align: center;
    }
    
    .who-collage-circle {
        width: 100%;
        max-width: 400px;
        height: 400px;
        margin: 0 auto;
    }
    
    .who-collage-image.who-img-1 {
        width: 220px;
        height: 220px;
    }
    
    .who-collage-image.who-img-2 {
        width: 160px;
        height: 160px;
    }
    
    .who-collage-image.who-img-3 {
        width: 190px;
        height: 190px;
    }
    
    .who-collage-image.who-img-4 {
        width: 140px;
        height: 140px;
    }
    
    .who-collage-logo {
        width: 100px;
        height: 100px;
        padding: 12px;
    }
    
    .who-text {
        font-size: 15px;
    }
    
    .who-text-with-icon {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .who-text-icon {
        margin-top: 0;
    }
}

@media (max-width: 968px) {
    .who-header {
        margin-bottom: 50px;
    }
    
    .who-heading {
        font-size: 36px;
    }
    
    .who-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .who-left {
        flex: 0 0 100%;
    }
    
    .who-right {
        flex: 0 0 100%;
        padding-left: 0;
    }
    
    .who-collage-circle {
        max-width: 350px;
        height: 350px;
        margin: 0 auto;
    }
    
    .who-collage-image.who-img-1 {
        width: 190px;
        height: 190px;
    }
    
    .who-collage-image.who-img-2 {
        width: 140px;
        height: 140px;
    }
    
    .who-collage-image.who-img-3 {
        width: 170px;
        height: 170px;
    }
    
    .who-collage-image.who-img-4 {
        width: 120px;
        height: 120px;
    }
    
    .who-collage-logo {
        width: 90px;
        height: 90px;
        padding: 10px;
    }
    
    /* Vision & Mission Responsive */
    .vision-mission-section {
        padding: 80px 0;
    }
    
    .vm-header {
        margin-bottom: 40px;
    }
    
    .vm-main-heading {
        font-size: 36px;
    }
    
    .vm-tab {
        padding: 12px 35px;
        font-size: 14px;
    }
    
    .vm-content-inner {
        flex-direction: column;
        gap: 30px;
        padding: 40px 30px;
    }
    
    .vm-image-container {
        flex: 1;
        width: 100%;
        height: 400px;
    }
    
    .vm-text-container {
        width: 100%;
    }
    
    .vm-content-heading {
        font-size: 28px;
    }
    
    .vm-text {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .vision-mission-section {
        padding: 60px 0;
    }
    
    .vm-header {
        margin-bottom: 30px;
    }
    
    .vm-main-heading {
        font-size: 28px;
    }
    
    .vm-tabs-wrapper {
        margin-bottom: 30px;
    }
    
    .vm-tabs {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .vm-tab {
        padding: 12px 25px;
        font-size: 14px;
        width: 100%;
    }
    
    .vm-content-wrapper {
        min-height: auto;
    }
    
    .vm-content-inner {
        padding: 30px 20px;
        gap: 25px;
    }
    
    .vm-image-container {
        height: 300px;
    }
    
    .vm-content-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .vm-text {
        font-size: 14px;
        line-height: 1.8;
    }
}

/* Our Work Process Section */
.work-process-section {
    padding: 100px 0;
    background-color: #1a2a4a;
    background-image: url('assets/process_bg_1.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    position: relative;
}

.work-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 42, 74, 0.85);
    z-index: 0;
}

.work-process-section .container {
    position: relative;
    z-index: 1;
}

.process-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-subheading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.subheading-dots {
    color: #f4a261;
    font-size: 20px;
    line-height: 1;
}

.subheading-line {
    width: 40px;
    height: 2px;
    background-color: #f4a261;
}

.subheading-text {
    color: #f4a261;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.process-main-heading {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    margin: 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: #fff;
    border: 3px dashed #f4a261;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
}

.step-icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #f4a261;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon-circle i {
    color: #fff;
    font-size: 50px;
}

.step-title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.step-description {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    opacity: 0.9;
}

.step-arrow {
    position: absolute;
    right: -50px;
    top: 100px;
    color: #fff;
    font-size: 30px;
    opacity: 0.6;
    z-index: 1;
}

.process-step:last-child .step-arrow {
    display: none;
}

/* Responsive Design for Work Process */
@media (max-width: 1200px) {
    .step-arrow {
        right: -30px;
        font-size: 24px;
    }
    
    .step-circle {
        width: 180px;
        height: 180px;
    }
    
    .step-icon-circle {
        width: 100px;
        height: 100px;
    }
    
    .step-icon-circle i {
        font-size: 40px;
    }
}

@media (max-width: 968px) {
    .work-process-section {
        padding: 80px 0;
    }
    
    .process-main-heading {
        font-size: 36px;
    }
    
    .process-steps {
        flex-wrap: wrap;
        gap: 50px;
    }
    
    .process-step {
        flex: 0 0 calc(50% - 15px);
    }
    
    .step-arrow {
        display: none;
    }
    
    .step-circle {
        width: 160px;
        height: 160px;
    }
    
    .step-icon-circle {
        width: 90px;
        height: 90px;
    }
    
    .step-icon-circle i {
        font-size: 35px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .step-description {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .work-process-section {
        padding: 60px 0;
    }
    
    .process-header {
        margin-bottom: 50px;
    }
    
    .process-main-heading {
        font-size: 28px;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-step {
        flex: 1;
        width: 100%;
    }
    
    .step-circle {
        width: 150px;
        height: 150px;
    }
    
    .step-icon-circle {
        width: 80px;
        height: 80px;
    }
    
    .step-icon-circle i {
        font-size: 30px;
    }
    
    .step-title {
        font-size: 18px;
    }
    
    .step-description {
        font-size: 14px;
    }
    
    .subheading-line {
        width: 20px;
    }
    
    .subheading-text {
        font-size: 12px;
    }
}

/* Our Projects Section */
.projects-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.projects-header {
    text-align: center;
    margin-bottom: 60px;
}

.projects-subheading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.projects-main-heading {
    font-size: 42px;
    font-weight: bold;
    color: #1a2a4a;
    margin-bottom: 15px;
}

.projects-description {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    background-color: #fff;
}

.project-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.project-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-item:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 42, 74, 0.95) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-item:hover .project-overlay {
    opacity: 1;
}

.project-info {
    width: 100%;
    color: #fff;
}

.project-title {
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
}

.project-category {
    font-size: 14px;
    color: #f4a261;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: #f4a261;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.project-link:hover {
    background-color: #fff;
    color: #f4a261;
    transform: rotate(45deg);
}

.projects-footer {
    text-align: center;
}

.view-all-btn {
    display: inline-block;
    background-color: #1a2a4a;
    color: #fff;
    padding: 14px 35px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 5px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.view-all-btn:hover {
    background-color: #f4a261;
    transform: translateX(5px);
}

/* Projects Section Responsive */
@media (max-width: 968px) {
    .projects-section {
        padding: 80px 0;
    }
    
    .projects-main-heading {
        font-size: 36px;
    }
    
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .project-image {
        height: 280px;
    }
    
    .project-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .projects-section {
        padding: 60px 0;
    }
    
    .projects-header {
        margin-bottom: 40px;
    }
    
    .projects-main-heading {
        font-size: 28px;
    }
    
    .projects-description {
        font-size: 14px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-image {
        height: 250px;
    }
    
    .project-overlay {
        opacity: 1;
        padding: 20px;
    }
    
    .project-title {
        font-size: 18px;
    }
    
    .project-category {
        font-size: 12px;
    }
    
    .view-all-btn {
        padding: 12px 30px;
        font-size: 13px;
    }
}

/* Contact Form Section */
.contact-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.contact-header {
    text-align: center;
    margin-bottom: 70px;
}

.contact-subheading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.contact-main-heading {
    font-size: 42px;
    font-weight: bold;
    color: #1a2a4a;
    margin-bottom: 15px;
}

.contact-description {
    font-size: 16px;
    color: #666;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 0 0 45%;
    background-color: #fff;
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info-header {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.contact-info-title {
    font-size: 48px;
    font-weight: bold;
    color: #1a2a4a;
    line-height: 1.2;
    margin: 0;
    flex-shrink: 0;
}

.title-second-line {
    display: block;
}

.contact-info-subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
    flex: 1;
    padding-top: 10px;
}

.info-items-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: transform 0.3s ease;
}

.info-item:hover {
    transform: translateX(5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: #f4a261;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    background-color: #1a2a4a;
    transform: scale(1.1);
}

.info-icon i {
    color: #fff;
    font-size: 24px;
}

.info-content h4 {
    font-size: 18px;
    font-weight: bold;
    color: #1a2a4a;
    margin-bottom: 8px;
}

.info-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.info-content a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #f4a261;
}

.contact-form-container {
    flex: 1;
    background-color: #fff;
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a2a4a;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 16px;
    font-family: 'Arial', sans-serif;
    transition: all 0.3s ease;
    background-color: #fff;
    color: #333;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    opacity: 1;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f4a261;
    box-shadow: 0 0 0 3px rgba(244, 162, 97, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    background-color: #1a2a4a;
    color: #fff;
    padding: 16px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn i {
    transition: transform 0.3s ease;
}

.submit-btn:hover {
    background-color: #f4a261;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 162, 97, 0.3);
}

.submit-btn:hover i {
    transform: translateX(5px);
}

.form-message {
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-message i {
    font-size: 18px;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Contact Section Responsive */
@media (max-width: 968px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-header {
        margin-bottom: 50px;
    }
    
    .contact-main-heading {
        font-size: 36px;
    }
    
    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .contact-info {
        width: 100%;
        padding: 40px 30px;
    }
    
    .contact-info {
        gap: 35px;
    }
    
    .contact-info-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-info-title {
        font-size: 36px;
    }
    
    .contact-info-subtitle {
        padding-top: 0;
    }
    
    .contact-form-container {
        width: 100%;
        padding: 40px 30px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .info-items-wrapper {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-header {
        margin-bottom: 40px;
    }
    
    .contact-main-heading {
        font-size: 28px;
    }
    
    .contact-description {
        font-size: 14px;
        padding: 0 20px;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
    
    .contact-info {
        gap: 30px;
    }
    
    .contact-info-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-info-title {
        font-size: 32px;
    }
    
    .contact-info-subtitle {
        font-size: 14px;
        padding-top: 0;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .info-items-wrapper {
        gap: 20px;
    }
    
    .info-item {
        gap: 15px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-icon i {
        font-size: 20px;
    }
    
    .info-content h4 {
        font-size: 16px;
    }
    
    .info-content p {
        font-size: 14px;
    }
    
    .form-group label {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .submit-btn {
        padding: 14px 25px;
        font-size: 14px;
    }
}

/* Footer */
.footer {
    background-color: #1a2a4a00;
    background-image: url('assets/footer_bg_2.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
    color: #fff;
    padding: 70px 0 0;
    margin-top: 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 42, 74, 40%);
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 50px;
    align-items: flex-start;
    justify-items: center;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-about {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    width: 100%;
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-main {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
}

.footer-logo-sub {
    font-size: 11px;
    color: #f4a261;
    letter-spacing: 0.5px;
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 25px;
    text-align: left;
}

.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.footer-social-icon:hover {
    background-color: #f4a261;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: #f4a261;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-menu a i {
    font-size: 10px;
    color: #f4a261;
    transition: transform 0.3s ease;
}

.footer-menu a:hover {
    color: #f4a261;
    padding-left: 5px;
}

.footer-menu a:hover i {
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
    width: 100%;
}

.footer-contact-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(244, 162, 97, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f4a261;
    font-size: 18px;
    flex-shrink: 0;
}

.footer-contact-text {
    flex: 1;
}

.footer-contact-text p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.footer-contact-text a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-text a:hover {
    color: #f4a261;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    margin-top: 50px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    color: #ccc;
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #f4a261;
}

.footer-bottom-links span {
    color: #666;
}

/* Footer Responsive */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        justify-items: flex-start;
    }
    
    .footer-column {
        width: 100%;
        align-items: flex-start;
    }
    
    .footer-logo {
        justify-content: flex-start;
        text-align: left;
    }
    
    .footer-description {
        text-align: left;
    }
    
    .footer-social {
        justify-content: flex-start;
    }
    
    .footer-title {
        text-align: left;
    }
    
    .footer-title::after {
        left: 0;
        transform: none;
    }
    
    .footer-menu {
        text-align: left;
    }
    
    .footer-contact-item {
        justify-content: flex-start;
    }
    
    .footer-contact-text {
        text-align: left;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: left;
        /* align-items: flex-start; */
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .footer-bottom-links span {
        display: none;
    }
}

