* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1e5a7d;
    --secondary-color: #2a7ba8;
    --light-bg: #f5f5f5;
    --dark-bg: #0d2838;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --black: #000000;
    --gray:#929292;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   ENHANCED SCROLL REVEAL ANIMATION SYSTEM
   ======================================== */

/* Initial state - elements are invisible and positioned below */
.scroll-reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Active state - elements become visible and move to position */
.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays for sequential reveals */
.scroll-reveal.delay-1 {
    transition-delay: 0.15s;
}

.scroll-reveal.delay-2 {
    transition-delay: 0.3s;
}

.scroll-reveal.delay-3 {
    transition-delay: 0.45s;
}

.scroll-reveal.delay-4 {
    transition-delay: 0.6s;
}

.scroll-reveal.delay-5 {
    transition-delay: 0.75s;
}

.scroll-reveal.delay-6 {
    transition-delay: 0.9s;
}

.scroll-reveal.delay-7 {
    transition-delay: 1.05s;
}

/* Fade in animation for navbar (appears from top) */
.scroll-fade-in {
    opacity: 0;
    animation: fadeInDown 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Navigation */
.navbar {
    background-color: var(--white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: 40px;
    background: var(--primary-color);
    border-radius: 4px;
}

.logo-text {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: bold;
    font-family: 'Baskerville Old Face';
    font-style: normal;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.45rem;
}

.nav-menu a {
    color: var(--black);
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--black);
    transition: 0.3s;
}

/* Hero Section - Updated with Video Background */
.hero {
    position: relative;
    padding: 70px 30px 0 50px;
    min-height: 90vh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

/* Dark overlay for better text readability */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 40, 56, 0.75);
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    text-align: left;
    padding-bottom: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 80px;
}

.hero-logo {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 8px;
    margin-bottom: 2rem;
    margin-top: 0;
}

.hero-title {
    font-size: 4.2rem;
    color: var(--white);
    margin-bottom: 1.6rem;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.08;
    margin-top: 25px;
    text-transform: capitalize;
    text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);

}

.hero-subtitle {
    font-size: 1.2rem;
    color: #f0f4f7;
    margin-bottom: 3rem;
    line-height: 1.8;
    text-align: left;
    margin-top: 25px;
    font-weight: 700;

}

.hero-image {
    flex: 1;
    max-width: 550px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    align-self: flex-end;
}

.hero-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    object-position: bottom center;
    display: block;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: fit-content;
    margin-bottom: 1.2rem;
    margin-top: -5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 90, 125, 0.3);
}

/* Section Styling */
.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.section-title-white {
    font-size: 2.5rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle-white {
    text-align: center;
    color: #ddd;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* About Section */
.about {
    padding: 80px 20px;
    background: var(--white);
}

.about-content {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.16rem;
    font-weight: 500;
    line-height: 1.9;
    color: #26323a;
    margin-bottom: 1.45rem;
    text-align: center;
    letter-spacing: 0;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: 8px;
    overflow: hidden;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    font-weight: 600;
}
/* Services Section */
.services {
    padding: 80px 20px;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 200px !important;
    height: 200px !important;
    margin: 0 auto 1.5rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.service-icon img {
    width: 200px !important;
    height: 200px !important;
   
    object-fit: contain !important;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}
/* Projects Section */
.gallery {
    padding: 80px 20px;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: #ccc;
    cursor: pointer;
    aspect-ratio: 1/1;
    height: auto;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
    padding: 2rem 1rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h4 {
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 20px;
    background: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.8;
}

.client-name {
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
}

.client-type {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Enquiry Form Styles */
#enquiry-form {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

#enquiry-form .container {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#enquiry-form h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #2b6f8f;
}

#enquiry-form p {
  font-size: 1rem;
  margin-bottom: 30px;
  color: #666;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: #2b6f8f;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
  color: #1f2937;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #007bff;
  outline: none;
}

.form-group small {
  display: block;
  margin-top: 5px;
  color: #888;
  font-size: 0.9rem;
}

.submit-btn {
  background-color: #007bff;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: #0056b3;
}

.submit-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background:
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.14), transparent 26%),
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.12), transparent 24%),
        linear-gradient(135deg, #082331 0%, #174b5f 42%, #0f3342 72%, #071b27 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 72px),
        linear-gradient(30deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 88px);
    opacity: 0.55;
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact .section-title-white {
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.contact .section-subtitle-white {
    color: rgba(255, 255, 255, 0.86);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    color: var(--white);
    padding: 2rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.58);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07));
}

.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #f2c94c 0%, #d48b2a 100%);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.contact-item p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s;
}

.contact-item a:hover {
    opacity: 0.8;
}

.contact-location {
    display: block;
    text-decoration: none;
    cursor: pointer;
}

/* =============================================
   ENQUIRY FORM SECTION WITH WHATSAPP STYLING
   ============================================= */

#enquiry-form.enquiry-section {
    padding: 42px 20px;
    background:
        radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.1), transparent 28%),
        radial-gradient(circle at 82% 12%, rgba(190, 196, 203, 0.14), transparent 24%),
        linear-gradient(135deg, #20242a 0%, #343a41 52%, #555b62 100%);
    position: relative;
    overflow: hidden;
}

.enquiry-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0L100 100M100 0L0 100" stroke="rgba(255,255,255,0.07)" stroke-width="2"/></svg>');
    opacity: 0.38;
}

#enquiry-form.enquiry-section .container {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 10px;
    padding: 24px 22px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

.form-header {
    text-align: center;
    margin-bottom: 22px;
}

#enquiry-form .form-title {
    font-size: 1.55rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#enquiry-form .form-description {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 14px;
}

.whatsapp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #2a7ba8 0%, #1e5a7d 100%);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.86rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3) ;
    animation: pulse 2s infinite;
}

.whatsapp-icon-small {
    width: 20px;
    height: 20px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Form Styles */
.enquiry-form {
    background: white;
    padding: 22px;
    border-radius: 10px;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 7px;
    font-size: 0.86rem;
}

.required {
    color: #e53e3e;
    margin-left: 3px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 9px 12px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #f7fafc;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #25D366;
    background: white;
    box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 74px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

/* Error Messages */
.error-msg {
    color: #e53e3e;
    font-size: 0.875rem;
    margin-top: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.error-msg::before {
    content: '⚠';
    font-size: 1rem;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 13px 26px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 16px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.submit-btn:active {
    transform: translateY(-1px);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-icon {
    width: 22px;
    height: 22px;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    max-width: 450px;
    animation: slideInRight 0.3s ease-out;
}

.success-notification {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
}

.error-notification {
    background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%);
    color: white;
}

.notification h4 {
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.notification p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Animations */
@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(-10px);
    }
    50% {
        transform: translateX(10px);
    }
    75% {
        transform: translateX(-5px);
    }
}

.shake {
    animation: shake 0.5s ease-in-out;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    
    background:#2a7ba8 ;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(46, 179, 119, 0.4);
}

.scroll-top svg {
    width: 24px;
    height: 24px;
    box-shadow: #1e5a7d;
}

/* WhatsApp Section */
.whatsapp-section {
    padding: 60px 20px;
    margin-top: 0;
    background: linear-gradient(135deg, #082331 0%, #174b5f 42%, #0f3342 72%, #071b27 100%);
    position: relative;
    overflow: hidden;
}

.whatsapp-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 72px),
        linear-gradient(30deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 88px);
    opacity: 0.55;
    pointer-events: none;
}

.whatsapp-section .container {
    position: relative;
    z-index: 1;
}

.whatsapp-box {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 3rem 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

.whatsapp-icon-large {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon-large img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 0;
}

.whatsapp-box h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.whatsapp-number {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.whatsapp-box p {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--white);
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 3rem 20px;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.footer h3 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer p {
    color: #999;
    margin-bottom: 2rem;
}
.new-footer {
    background: var(--gray);
    padding: 0.5rem 5px;
    text-align: center;
}

.new-footer p {
    color: black;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-links a svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

.social-links a:hover svg {
    transform: scale(1.1);
}


/* Responsive Design */
@media (max-width: 768px) {
    #enquiry-form.enquiry-section {
        padding: 42px 15px;
    }

    #enquiry-form .form-title {
        font-size: 1.4rem;
    }

    #enquiry-form .form-description {
        font-size: 0.88rem;
    }

    .enquiry-form {
        padding: 20px 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .submit-btn {
        padding: 13px 20px;
        font-size: 0.92rem;
    }

    .notification {
        left: 15px;
        right: 15px;
        max-width: none;
    }

    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        background-color: #1e5a7d;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-links a svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    #enquiry-form .form-title {
        font-size: 1.25rem;
    }

    .whatsapp-badge {
        font-size: 0.8rem;
        padding: 8px 14px;
    }

    .form-group input,
    .form-group textarea {
        padding: 9px 12px;
        font-size: 0.88rem;
    }
}

/* Responsive Design for Hero */
@media (max-width: 968px) {
    .hero-container {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-subtitle {
        text-align: center;
    }

    .hero-image {
        max-width: 100%;
    }

    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.45rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-logo {
        width: 60px;
        height: 60px;
    }

    .section-title,
    .section-title-white {
        font-size: 2rem;
    }

    .services-grid,
    .gallery-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .whatsapp-number {
        font-size: 1.5rem;
    }
    
    .whatsapp-icon-large {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 0;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }

    .hero-container {
        gap: 1.5rem;
    }
    
    .whatsapp-icon-large {
        width: 70px;
        height: 70px;
    }
}


/* Service icon images */
.service-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;

}
.scroll-top {
  background-color: #1e5a7d; /* Blue */
}






