/* Base Styles */
:root {
    --primary-color: #ff3418;
    --primary-light: #ff3418;
    --accent-color: #ff3418;
    --text-color: #333333;
    --text-light: #666666;
    --text-lighter: #888888;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a1a1a;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    position: relative;
}

.section-padding {
    padding: 100px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: white;
    color: #ff3418;
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    /* border: 2px solid var(--primary-color); */
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
    padding: 15px 0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo > img {
    height:50px;
}
.logo-text {
    color: var(--primary-color);
}

.nav-links ul {
    display: flex;
}

.nav-links ul li {
    margin-left: 30px;
}

.nav-links ul li a {
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-links ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links ul li a:hover::after,
.nav-links ul li a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background:  
                url('homeship.jpg') no-repeat center center/cover;
    color: #ff3418;
    position: relative;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    color: #ff3418;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* Team Section */
.team {
    background-color: var(--bg-light);
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-card {
    background-color: white;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.team-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(8, 52, 160, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.team-card:hover .card-icon {
    background-color: var(--primary-color);
    transform: rotateY(180deg);
}

.team-card:hover .card-icon svg {
    stroke: white;
}

.card-icon svg {
    width: 30px;
    height: 30px;
    transition: var(--transition);
}

.team-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.team-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .team-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .team-card {
        padding: 30px 25px;
    }
}

@media (max-width: 576px) {
    .team-card {
        padding: 25px 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .team-card h3 {
        font-size: 1.3rem;
    }
}

/* About Section */
/* .about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.image-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    z-index: -1;
}

.image-frame img {
    display: block;
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
} */

/* Premium Services Section */
.services-premium {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 40px;
}

.divider-line {
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent, rgba(8, 52, 160, 0.3), transparent);
}

.divider-icon {
    margin: 0 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 52, 24, 0.1);
    border-radius: 50%;
}

.divider-icon svg {
    width: 20px;
    height: 20px;
}

.services-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.service-statement {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.statement-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(8, 52, 160, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.statement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(8, 52, 160, 0.15);
}

.statement-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(8, 52, 160, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.statement-icon svg {
    width: 24px;
    height: 24px;
}

.statement-card h3 {
    color:  #ff3418;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.statement-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

.accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff3418);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.statement-card:hover .accent-line {
    transform: scaleX(1);
}

.service-categories {
    display: grid;
    gap: 30px;
}

.category-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(8, 52, 160, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(8, 52, 160, 0.15);
}

.category-header {
    background: linear-gradient(135deg, #ffffff);
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 2px solid black;
}

.category-header svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.category-header h3 {
    color: #000;
    margin: 0;
    font-size: 1.3rem;
    font-weight: 500;
}

.category-items {
    padding: 25px 30px;
    display: grid;
    gap: 12px;
}

.category-items li {
    position: relative;
    padding-left: 25px;
    color: #333;
    transition: all 0.3s ease;
}

.category-items li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: #ff3418;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.category-items li span {
    position: relative;
    transition: all 0.3s ease;
}

.category-items li:hover {
    color: #000;
}

.category-items li:hover::before {
    transform: translateY(-50%) rotate(45deg);
    background-color: #000;
}

.category-items li:hover span {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid-premium {
        gap: 20px;
    }
    
    .statement-card {
        padding: 30px;
    }
    
    .category-header {
        padding: 20px 25px;
    }
    
    .category-items {
        padding: 20px 25px;
    }
}

@media (max-width: 768px) {
    .services-grid-premium {
        grid-template-columns: 1fr;
    }
    
    .service-statement {
        gap: 20px;
    }
    
    .statement-card h3 {
        font-size: 1.3rem;
    }
    
    .category-header h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .statement-card {
        padding: 25px;
    }
    
    .statement-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }
    
    .statement-card h3 {
        font-size: 1.25rem;
    }
    
    .category-header {
        padding: 18px 20px;
    }
    
    .category-items {
        padding: 18px 20px;
        gap: 10px;
    }
    
    .category-items li {
        font-size: 0.95rem;
    }
}

/* Performance Optimizations */
.services-premium * {
    will-change: transform, opacity;
    backface-visibility: hidden;
}

@media (prefers-reduced-motion: reduce) {
    .services-premium * {
        transition: none !important;
        animation: none !important;
    }
}

/* Mission Section */
.mission {
    background-color: var(--bg-light);
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.mission-card {
    background-color: white;
    border-radius: 8px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.mission-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease-in-out;
}

.mission-card:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(8, 52, 160, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.mission-card:hover .card-icon {
    background-color: var(--primary-color);
}

.mission-card:hover .card-icon svg {
    stroke: white;
}

.card-icon svg {
    width: 30px;
    height: 30px;
    transition: var(--transition);
}

.mission-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.mission-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.mission-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .mission-cards {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 40px;
    }
    
    .mission-card {
        padding: 30px 25px;
    }
    
    .mission-footer {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .mission-card {
        padding: 25px 20px;
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .mission-card h3 {
        font-size: 1.3rem;
    }
}


/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-light);
    transform: translateY(-5px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content,
    .contact-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-top: 40px;
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links ul {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-links ul li {
        margin: 15px 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .service-card,
    .testimonial-card {
        min-width: 100%;
    }
    
    .footer-col {
        min-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}


/* Contact Form Section */
.contact-form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0 40px;
}

.divider-line {
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent, rgba(8, 52, 160, 0.3), transparent);
}

.divider-icon {
    margin: 0 15px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 52, 24, 0.1);
    border-radius: 50%;
}

.divider-icon svg {
    width: 20px;
    height: 20px;
}

.form-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.form-wrapper {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(8, 52, 160, 0.08);
}

.google-form {
    width: 100%;
    /* height: 100px; Adjust based on your form height */
    border: none;
    overflow: hidden;
}

.form-sidebar {
    display: flex;
    flex-direction: column;
}

.contact-info {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(8, 52, 160, 0.08);
    /* height: 100%; */
}

.contact-info h3 {
    color: #ff3418;
    font-size: 1.4rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(8, 52, 160, 0.1);
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item svg {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 3px;
    stroke: #ff3418;
    fill: none;
}

.info-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .form-container {
        grid-template-columns: 1.5fr 1fr;
        gap: 30px;
    }
    
    .form-wrapper,
    .contact-info {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
    }
    
    .google-form {
        height: 800px; /* Adjust for smaller screens */
    }
}

@media (max-width: 480px) {
    .form-wrapper,
    .contact-info {
        padding: 20px;
    }
    
    .divider-line {
        width: 40px;
    }
    
    .divider-icon {
        width: 35px;
        height: 35px;
        margin: 0 10px;
    }
    
    .google-form {
        height: 700px; /* Adjust for mobile */
    }
}

/* Google Form Responsive Fix */
.google-form {
    min-height: 600px; /* Minimum height */
}

@media (max-height: 800px) {
    .google-form {
        height: 600px;
    }
}