
/* IMPORTANT — icon container */
.floating-icon i{
    position:relative;
    font-size:26px;
    animation:waIntervalVibrate 3s infinite;
}


/* ===== RADIATING WAVES ===== */

.floating-icon i::after{
    content:'';
    position:absolute;
    left:50%;
    top:50%;
    width:12px;
    height:12px;
    background:#25D366;
    border-radius:50%;
    transform:translate(-50%,-50%);
    z-index:-1;
    animation:waRadiate 2s infinite;
}

@keyframes waRadiate{

    0%{
        width:12px;
        height:12px;
        opacity:.9;
    }

    70%{
        width:45px;
        height:45px;
        opacity:0;
    }

    100%{
        opacity:0;
    }

}


/* ===== LEFT RIGHT VIBRATION (INTERVAL) ===== */

@keyframes waIntervalVibrate{

    0%   { transform:translateX(0); }

    5%   { transform:translateX(-4px); }
    10%  { transform:translateX(4px); }
    15%  { transform:translateX(-4px); }
    20%  { transform:translateX(4px); }
    25%  { transform:translateX(-3px); }
    30%  { transform:translateX(3px); }

    /* STOP */
    35%  { transform:translateX(0); }
    100% { transform:translateX(0); }

}

/* RED DOT */
.wa-dot{
    position:absolute;
    top:6px;
    right:6px;
    width:10px;
    height:10px;
    background:#ff2b2b;
    border-radius:50%;
}

/* RADIATING WAVE */
.wa-dot::after{
    content:'';
    position:absolute;
    inset:0;
    border-radius:50%;
    background:#ff2b2b;
    animation:waRadiate 1.6s infinite;
    z-index:-1;
}

@keyframes waRadiate{

    0%{
        transform:scale(1);
        opacity:.9;
    }

    70%{
        transform:scale(2.5);
        opacity:0;
    }

    100%{
        transform:scale(2.5);
        opacity:0;
    }

}




/* Button alignment */
.contact-number{
    display:inline-flex;
    align-items:center;
    gap:8px;
}

/* INTERVAL VIBRATION */
.call-icon{
    display:inline-block;
    font-size:20px;
    animation:intervalVibrate 3s infinite;
}


/* Vibrate only at the beginning of 3s */
@keyframes intervalVibrate{

    0%   { transform:translateX(0) rotate(0); }

    5%   { transform:translateX(-4px) rotate(-10deg); }
    10%  { transform:translateX(4px) rotate(10deg); }
    15%  { transform:translateX(-4px) rotate(-8deg); }
    20%  { transform:translateX(4px) rotate(8deg); }
    25%  { transform:translateX(-3px) rotate(-6deg); }
    30%  { transform:translateX(3px) rotate(6deg); }

    /* STOP vibration */
    35%  { transform:translateX(0) rotate(0); }
    100% { transform:translateX(0) rotate(0); }

}


/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}
.hero-heading {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff; /* Dark professional navy */
    margin-bottom: 15px;
}

.hero-heading span {
    color: #0ea5e9; /* Modern blue accent */
    font-weight: 800;
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .hero-heading {
        font-size: 32px;
    }
}


/* Floating Sticky Icon */
.floating-icon {
  position: fixed;      /* Always stay visible */
  bottom: 20px;         /* Distance from bottom */
  right: 20px;          /* Distance from right */
  background-color: #25d366; /* WhatsApp green */
  color: white;
  padding: 10px 15px;
  border-radius: 50px;  /* Rounded pill shape */
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  z-index: 9999;        /* Always on top */
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.floating-icon:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

.floating-icon i {
  font-size: 24px;
  margin-right: 8px;  /* Space between icon and text */
}

.floating-icon span {
  font-size: 16px;
  font-weight: 500;
}


body {
    line-height: 1.6;
    color: #004080;
    background: #f2f2f2;
}
/* General Section Styles */
.section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.section-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

/* Reverse layout for alternating sections */
.section-container.reverse {
    flex-direction: row-reverse;
}

/* Image Styles */
.section-image {
    flex: 1 1 400px;
    text-align: center;
}

.section-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.section-image img:hover {
    transform: scale(1.05);
}

/* Text Styles */
.section-text {
    flex: 1 1 400px;
}

.section-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a73e8;
    position: relative;
}

.section-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #1a73e8;
    margin-top: 8px;
    border-radius: 2px;
}

.section-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

/* Section Colors */
.about-section {
    background-color: #ffffff;
}

.mission-section {
    background-color: #f1f5f9;
}

.vision-section {
    background-color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .section-container {
        flex-direction: column;
        text-align: center;
    }
    .section-container.reverse {
        flex-direction: column;
    }
    .section-text {
        order: 2;
    }
    .section-image {
        order: 1;
    }
}

@media (max-width: 500px) {
    .section-text h2 {
        font-size: 1.8rem;
    }
    .section-text p {
        font-size: 1rem;
    }
}

/* Header */
/* Header */
header {
    background: #004080;
    color: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-top: 3rem;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
    
    
}

/* Logo */
header .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Contact number */
header .contact-number {
    font-weight: bold;
}

/* Navigation */
header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #fbb040;
}

/* Hamburger menu - hidden by default */
header .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

header .hamburger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s;
}

/* MOBILE / TABLET */
@media (max-width: 991px) {
    header .container {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    header nav {
        width: 100%;
        display: none; /* hide menu by default */
    }

    header nav ul {
        flex-direction: column;
        gap: 10px;
        background: #004080;
        padding: 10px 0;
    }

    header .hamburger {
        display: flex;
    }

    header nav.active {
        display: block; /* show menu when active */
    }

    header .contact-number {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}

/* Hero */
/* .hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 10%;
    background: linear-gradient(135deg, #fbb040, #004080);
    color: #fff;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    animation: fadeInUp 1s ease forwards;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    animation: fadeInUp 1.5s ease forwards;
} */

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #fff;
    color: #004080;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s, background 0.3s;
}
/* About Us Section */
.about-us {
    padding: 80px 10%;
    background: #f9f9f9;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* About Card */
.about-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    line-height: 1.7;
}

.about-card h2 {
    color: #004080;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-card p {
    color: #333;
    font-size: 1rem;
    margin-bottom: 15px;
}

/* Mission & Vision Cards */
.mission-vision {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mv-card {
    background: #0073b1;
    color: #fff;
    padding: 25px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.mv-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Hover Effect for Mission & Vision */
.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .about-us {
        padding: 60px 5%;
    }

    .about-card {
        padding: 20px;
    }

    .about-card h2 {
        font-size: 1.8rem;
    }

    .about-card p {
        font-size: 0.95rem;
    }

    .mv-card h3 {
        font-size: 1.3rem;
    }

    .mv-card p {
        font-size: 0.95rem;
    }
}

.btn:hover {
    background: #fbb040;
    color: #004080;
    transform: scale(1.05);
}

/* Hero Animation */
.hero-animation {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 100%;
    background: url('https://i.imgur.com/Q9qFt3m.png') no-repeat center/contain;
    animation: float 4s ease-in-out infinite alternate;
}

@keyframes fadeInUp {
    0% {opacity: 0; transform: translateY(50px);}
    100% {opacity: 1; transform: translateY(0);}
}

@keyframes float {
    0% {transform: translateY(0);}
    100% {transform: translateY(-20px);}
}

/* Services Section */
.services-overview {
    padding: 60px 10%;
    text-align: center;
    background: #f9f9f9;
}

.services-overview h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #004080;
    font-weight: 700;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Service Card */
.service-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.service-card h3 {
    color: #004080;
    margin-bottom: 20px;
    font-size: 1.6rem;
}
/* Services Section */
.services-overview {
    padding: 60px 10%;
    text-align: center;
    background: #f9f9f9;
}

.services-logo img {
    max-width: 200px;
    margin-bottom: 30px;
}

.services-overview h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #004080;
    font-weight: 700;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Service Card */
.service-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.service-card h3 {
    color: #004080;
    margin-bottom: 20px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Service Buttons Grid */
.service-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px 12px;
    justify-items: center;
}

/* Service Buttons */
.service-btn {
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Professional Colors */
.service-btn.blue { background: #0073b1; }
.service-btn.teal { background: #009688; }
.service-btn.gold { background: #fbb040; color: #004080; }
.service-btn.purple { background: #673ab7; }
.service-btn.green { background: #4caf50; }
.service-btn.orange { background: #ff5722; }
.service-btn.grey { background: #607d8b; }

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-overview h2 {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .service-buttons {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px 10px;
    }

    .service-btn {
        font-size: 0.85rem;
    }
}

/* Service Buttons Container */
.service-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px 12px; /* vertical and horizontal gap */
    justify-items: center; /* center buttons in each grid cell */
}

/* Service Buttons */
.service-btn {
    padding: 10px 15px;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 100%;          /* make buttons fill the grid cell */
    text-align: center;
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Professional Colors */
.service-btn.blue { background: #0073b1; }       /* Certificates */
.service-btn.teal { background: #009688; }       /* Identity & Govt */
.service-btn.gold { background: #fbb040; color: #004080; } /* Labour & Welfare */
.service-btn.purple { background: #673ab7; }     /* Transport */
.service-btn.green { background: #4caf50; }      /* Banking */
.service-btn.orange { background: #ff5722; }     /* Education & Online */
.service-btn.grey { background: #607d8b; }       /* Other Services */

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-overview h2 {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.4rem;
    }

    .service-buttons {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 10px 10px;
    }

    .service-btn {
        font-size: 0.85rem;
    }
}


/* Responsive Typography */
@media (max-width: 768px) {
    .services-overview h2 {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-list li {
        font-size: 0.95rem;
    }
}

/* Why Choose Us */
/* Why Choose Us Section */
.csc-why-choose {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.csc-why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.csc-why-choose-title {
    font-size: 2.5rem;
    color: #1a73e8;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.csc-why-choose-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #1a73e8;
    margin: 10px auto 0;
    border-radius: 2px;
}

.csc-why-choose-subtitle {
    font-size: 1.2rem;
    margin-bottom: 50px;
    color: #555;
}

/* Grid Layout */
.csc-why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Individual Items */
.csc-why-choose-item {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s forwards;
}

.csc-why-choose-item:nth-child(1) { animation-delay: 0.1s; }
.csc-why-choose-item:nth-child(2) { animation-delay: 0.2s; }
.csc-why-choose-item:nth-child(3) { animation-delay: 0.3s; }
.csc-why-choose-item:nth-child(4) { animation-delay: 0.4s; }
.csc-why-choose-item:nth-child(5) { animation-delay: 0.5s; }

.csc-why-choose-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Icons */
.csc-why-choose-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

/* Item Titles */
.csc-why-choose-item-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1a73e8;
}

/* Item Descriptions */
.csc-why-choose-item-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* CTA Section */
.csc-why-choose-cta {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a73e8;
    background-color: #e8f0fe;
    padding: 20px;
    border-radius: 12px;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.csc-why-choose-cta:hover {
    background-color: #d2e3fc;
    transform: translateY(-5px);
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .csc-why-choose-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .csc-why-choose-title {
        font-size: 2rem;
    }
}
/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-title {
    font-size: 2.5rem;
    color: #1a73e8;
    text-align: center;
    margin-bottom: 10px;
}

.faq-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #1a73e8;
    margin: 10px auto 0;
    border-radius: 2px;
}

.faq-subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 50px;
    color: #555;
}

/* FAQ Items */
.faq-item {
    background-color: #ffffff;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    font-size: 1.1rem;
    color: #1a73e8;
    background-color: #e8f0fe;
    transition: background-color 0.3s ease;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    padding: 0 25px;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    background-color: #ffffff;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 15px 25px 25px 25px;
    max-height: 500px; /* large enough for content */
}

/* Responsive */
@media (max-width: 600px) {
    .faq-question {
        font-size: 1rem;
    }
    .faq-answer {
        font-size: 0.95rem;
    }
}


/* Footer */
/* Footer Styles */
.footer {
    background-color: #08184c;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 60px 20px 30px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1 1 220px;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #f0f3f7;
    position: relative;
}

.footer-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #1a73e8;
    margin-top: 5px;
    border-radius: 2px;
}

.footer-column p, 
.footer-column li, 
.footer-column a {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #fbf8f8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #f8f4f4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1a73e8;
}

/* Gallery Images */
.footer-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-gallery img {
    width: 60px;
    height: 60px;
    border-radius: 5px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-gallery img:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Newsletter Form */
.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-newsletter input {
    padding: 10px;
    border-radius: 5px;
    border: none;
    outline: none;
    font-size: 1rem;
}

.footer-newsletter button {
    padding: 10px;
    border-radius: 5px;
    border: none;
    background-color: #1a73e8;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.footer-newsletter button:hover {
    background-color: #155ab6;
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #aaa;
}

.footer-bottom a {
    color: #aaa;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #1a73e8;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-column {
        text-align: center;
    }
    .footer-gallery {
        justify-content: center;
    }
}


/* Contact Us Section */
.contact-us {
    padding: 80px 20px;
    background-color: #f1f5f9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.contact-us-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Info Section */
.contact-us-info {
    flex: 1 1 400px;
}

.contact-us-title {
    font-size: 2rem;
    color: #1a73e8;
    margin-bottom: 15px;
    position: relative;
}

.contact-us-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #1a73e8;
    margin-top: 5px;
    border-radius: 2px;
}

.contact-us-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.contact-details .contact-item {
    margin-bottom: 20px;
}

.contact-details h4 {
    font-size: 1.1rem;
    color: #1a73e8;
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 1rem;
    color: #555;
}

/* Form Section */
.contact-us-form {
    flex: 1 1 400px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.contact-us-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-us-form input,
.contact-us-form textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-us-form input:focus,
.contact-us-form textarea:focus {
    border-color: #1a73e8;
}

.contact-us-form button {
    padding: 12px;
    border-radius: 8px;
    border: none;
    background-color: #1a73e8;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-us-form button:hover {
    background-color: #155ab6;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
    .contact-us-container {
        flex-direction: column;
    }
}
/* Style for the select field */
.csc-contact-select {
    padding: 12px;
    border-radius: 8px; /* Rounded corners */
    border: 1px solid #ccc;
    font-size: 1rem;
    outline: none;
    background-color: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    width: 100%; /* Full width to match other inputs */
    appearance: none; /* Remove default arrow styling for modern look */
}

.csc-contact-select:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 5px rgba(26,115,232,0.5);
}
/* Career Section */
.career-section {
    background-color: #f9fafb;
    padding: 80px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.career-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header */
.career-header h2 {
    font-size: 2.5rem;
    color: #1a73e8;
    margin-bottom: 15px;
}

.career-header p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 50px;
}

/* Why Work With Us */
.career-why, .career-benefits, .career-openings, .career-apply {
    margin-bottom: 50px;
}

.career-why h3,
.career-openings h3,
.career-benefits h3,
.career-apply h3 {
    font-size: 2rem;
    color: #1a73e8;
    margin-bottom: 20px;
    position: relative;
}

.career-why h3::after,
.career-openings h3::after,
.career-benefits h3::after,
.career-apply h3::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #1a73e8;
    margin-top: 5px;
    border-radius: 2px;
}

.career-why ul,
.career-benefits ul {
    list-style: none;
    padding: 0;
}

.career-why ul li,
.career-benefits ul li {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* Job Listings */
.career-openings .job-listing {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.job-item {
    flex: 1 1 350px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.job-item h4 {
    font-size: 1.2rem;
    color: #1a73e8;
    margin-bottom: 5px;
}

.job-item p {
    font-size: 0.95rem;
    color: #555;
}

/* Apply Form */
.career-apply form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.career-apply input,
.career-apply textarea,
.career-apply select {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    outline: none;
    width: 100%;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.career-apply input:focus,
.career-apply textarea:focus,
.career-apply select:focus {
    border-color: #1a73e8;
    box-shadow: 0 0 5px rgba(26,115,232,0.5);
}

.career-apply button {
    padding: 12px;
    border-radius: 8px;
    border: none;
    background-color: #1a73e8;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.career-apply button:hover {
    background-color: #155ab6;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 900px) {
    .career-openings .job-listing {
        flex-direction: column;
    }
}

/* Gallery Section */
.csc-gallery-section {
    background-color: #f9fafb;
    padding: 80px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.gallery-header h2 {
    font-size: 2.5rem;
    color: #1a73e8;
    text-align: center;
    margin-bottom: 15px;
}

.gallery-header p {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    bottom: 0;
    background: rgba(26, 115, 232, 0.8);
    color: #fff;
    width: 100%;
    text-align: center;
    padding: 15px 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    font-weight: 600;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}
/* HERO SECTION - MOBILE FIRST */
.hero {
    display: flex;
    flex-direction: column; /* stack by default for mobile */
    width: 100%;
    height: auto; /* let content define height */
    font-family: Arial, sans-serif;
}

/* LEFT CONTENT SIDE */
.hero-left {
    width: 100%;
    padding: 40px 20px;
    background: linear-gradient(90deg, #528d59, #3f63ff);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    clip-path: none; /* remove clip-path for mobile */
}

.hero-content h1 {
    font-size: 32px; /* smaller on mobile */
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background: orange;
    color: #fff;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
}

/* RIGHT IMAGE SIDE */
.hero-right {
    width: 100%;
    position: relative;
    height: 250px; /* mobile height */
    margin-top: 20px;
}

/* SLIDER IMAGES */
.hero-right .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-right .slide.active {
    opacity: 1;
}

/* TABLET AND DESKTOP */
@media (min-width: 769px) {
    .hero {
        flex-direction: row; /* side by side */
        height: 90vh;
    }

    .hero-left {
        flex: 1;
        padding: 60px;
        clip-path: polygon(0 0, 100% 0,90% 50%, 100% 100%, 0 100%);
        align-items: flex-start;
        text-align: left;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-right {
        flex: 1;
        height: 100%;
        margin-top: 0;
    }

    .hero-right .slide {
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 15% 100%, 0 50%);
    }
}

/* LARGE DESKTOP */
@media (min-width: 1200px) {
    .hero-left {
        padding: 80px;
    }

    .hero-content h1 {
        font-size: 60px;
    }

    .hero-content p {
        font-size: 20px;
    }
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
    width: 100%;
    display: block;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Text below the image */
.overlay-text {
    padding: 15px 20px;
    background: #fff;
}

.overlay-text h4 {
    margin: 0 0 5px;
    font-size: 18px;
    color: #1f3bb3;
}

.overlay-text p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

/* Mobile */
@media (max-width: 768px) {
    .overlay-text h4 {
        font-size: 16px;
    }
    .overlay-text p {
        font-size: 12px;
    }
}
.footer-shammix {
    color: #3f34e0;      /* change text color */
    text-decoration: underline;  /* underline the text */
    font-weight: bold;    /* optional: make it stand out */
    transition: color 0.3s; /* optional: smooth hover effect */
}

.footer-shammix:hover {
    color: #ff7f50; /* change color on hover */
}
.csc-corousel-shamix-hero {
    width: 100%;
    height: 90vh;
    margin-top: 10px;
    overflow: hidden;
    position: relative;
    background: #f5f7fb;
}

/* Slider wrapper */
.csc-corousel-shamix-slider {
    width: 100%;
    height: 100%; /* ✅ full height */
    position: relative;
}

/* Slide */
.csc-corousel-shamix-slide {
    position: absolute;
    inset: 0;
    opacity: 0; /* ✅ fixed */
    transition: opacity 0.6s ease-in-out;
}

/* Active slide */
.csc-corousel-shamix-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Image – FULL WIDTH & HEIGHT */
.csc-corousel-shamix-slide img {
    width: 100vw;      /* ✅ full screen width */
    height: 100%;
    object-fit: cover; /* ✅ fills screen professionally */
    object-position: center;
}

/* Soft overlay */
.csc-corousel-shamix-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
    z-index: 0;
}

/* Text content */
.csc-corousel-shamix-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    max-width: 520px;
    z-index: 1;
    color: #0a3d91;
}

.csc-corousel-shamix-content h1 {
    font-size: 3rem;
    margin-bottom: 12px;
    color: #0a3d91;
}

.csc-corousel-shamix-content p {
    font-size: 1.1rem;
    margin-bottom: 22px;
    color: #1e5bb8;
    line-height: 1.6;
}

/* Button */
.csc-corousel-shamix-btn {
    display: inline-block;
    padding: 12px 26px;
    background: #ff7a00;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.csc-corousel-shamix-btn:hover {
    background: #e66c00;
}

/* Navigation buttons */
.csc-corousel-shamix-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    border: none;
    font-size: 30px;
    padding: 10px 16px;
    cursor: pointer;
    z-index: 2;
    border-radius: 4px;
}

.csc-corousel-shamix-nav.prev {
    left: 20px;
}

.csc-corousel-shamix-nav.next {
    right: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .csc-corousel-shamix-hero {
        height: 70vh;
    }

    .csc-corousel-shamix-content {
        left: 5%;
        right: 5%;
        text-align: center;
    }

    .csc-corousel-shamix-content h1 {
        font-size: 2.2rem;
    }

    .csc-corousel-shamix-content p {
        font-size: 1rem;
    }
}
.csc-contact-shamix-section {
    padding: 60px 20px;
    background: #f5f7fb;
}

.csc-contact-shamix-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: stretch;
}

/* FORM */
.csc-contact-shamix-form {
    flex: 1;
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.csc-contact-shamix-form h2 {
    margin-bottom: 25px;
    color: #0a3d91;
}

.csc-contact-shamix-field {
    margin-bottom: 18px;
}

.csc-contact-shamix-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #333;
}

.csc-contact-shamix-field input,
.csc-contact-shamix-field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
}

.csc-contact-shamix-field input:focus,
.csc-contact-shamix-field textarea:focus {
    outline: none;
    border-color: #0a3d91;
}

/* BUTTON */
.csc-contact-shamix-btn {
    width: 100%;
    padding: 14px;
    background: #ff7a00;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.csc-contact-shamix-btn:hover {
    background: #e66c00;
}

/* MAP */
.csc-contact-shamix-map {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.csc-contact-shamix-map iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .csc-contact-shamix-container {
        flex-direction: column;
    }
}
.csc-contact-dual-shamix-section {
    padding: 70px 20px;
    background: #f5f7fb;
}

.csc-contact-dual-shamix-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Box */
.csc-contact-dual-shamix-box {
    background: #ffffff;
    padding: 45px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Icons */
.csc-contact-dual-shamix-icon {
    width: 80px;
    height: 80px;
    margin: auto;
    border-radius: 50%;
    color: #fff;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

/* WhatsApp styling */
.csc-contact-dual-shamix-box.whatsapp .csc-contact-dual-shamix-icon,
.csc-contact-dual-shamix-box.whatsapp .csc-contact-dual-shamix-btn {
    background: #25D366;
}

/* Call styling */
.csc-contact-dual-shamix-box.call .csc-contact-dual-shamix-icon,
.csc-contact-dual-shamix-box.call .csc-contact-dual-shamix-btn {
    background: #0a3d91;
}

.csc-contact-dual-shamix-box h3 {
    font-size: 24px;
    color: #222;
    margin-bottom: 8px;
}

.csc-contact-dual-shamix-box p {
    font-size: 15px;
    color: #555;
    margin-bottom: 22px;
}

/* Button */
.csc-contact-dual-shamix-btn {
    display: inline-block;
    padding: 14px 30px;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.csc-contact-dual-shamix-btn:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .csc-contact-dual-shamix-container {
        grid-template-columns: 1fr;
    }
}
.contact-number {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: #fff;       /* ✅ white text */
    text-decoration: none;
    cursor: pointer;
}

.contact-number:hover {
    text-decoration: underline; /* optional hover effect */
}
/* Logo + title wrapper */
.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 10px; /* space between logo and title */
}

.header-logo {
    width: 60px; /* adjust size as needed */
    height: auto;
}

/* Adjust site title next to logo */
.logo {
    font-size: 1.8rem;
    color: #ffffff;
    margin: 0;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-btn.prev {
    left: 15px;
}

.slider-btn.next {
    right: 15px;
}
.saheen-whatapp-contact-lates {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Icon styling */
.saheen-whatapp-contact-lates i {
    font-size: 20px;
}

/* WhatsApp Button */
.saheen-whatapp-contact-lates.whatsapp {
    background: linear-gradient(135deg, #25D366, #1ebe57);
}

.saheen-whatapp-contact-lates.whatsapp:hover {
    background: linear-gradient(135deg, #1ebe57, #128c7e);
    transform: translateY(-2px);
}

/* Call Button */
.saheen-whatapp-contact-lates.call {
    background: linear-gradient(135deg, #007bff, #0056b3);
}

.saheen-whatapp-contact-lates.call:hover {
    background: linear-gradient(135deg, #0056b3, #003f88);
    transform: translateY(-2px);
}
@media (max-width: 600px) {
    .saheen-whatapp-contact-lates {
        width: 100%;
        justify-content: center;
    }

    /* Wrapper suggestion if buttons are together */
    .saheen-contact-btn-wrapper {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
}
/* Top Header */
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  background-color: #2b9e57;
  font-size: 14px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: top 0.3s;
}

/* Left Section */
.top-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
}

.top-left i {
  color: #e74c3c;
  font-size: 18px;
}

/* Center Section */
.top-center a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Right Section */
.top-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-right a {
  color: #ffffff;
  font-size: 16px;
  transition: transform 0.2s, color 0.2s;
}

.top-right a:hover {
  transform: scale(1.2);
  color: #0073e6;
}

/* Main Header: add margin-top so it sits below top-header */
.main-header {
  background-color: #111451;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 998;
  
  margin-top: 40px; /* initial height of top-header */
}

/* Other header styling (logo, nav) unchanged */
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-number {
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
   .main-header {
    flex-direction: column;
    text-align: center;
    margin-top: 6rem;
  }

  .top-left, .top-center, .top-right {
    justify-content: center;
  }

  nav ul {
    flex-direction: column;
    display: none;
  }

  nav.active ul {
    display: flex;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }

  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: #000;
  }
}
.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  background-color: #3dae70;
  font-size: 14px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: top 0.3s;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-left i {
  color: #e74c3c;
  font-size: 18px;
}

.top-center a {
  text-decoration: none;
  color:#ffffff;
  font-weight: 500;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icons a {
  color: #ffffff;
  font-size: 32px;
  transition: transform 0.2s, color 0.2s;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #0073e6;
}

/* Hide desktop main nav and header items by default */
.mobile-main-header {
  display: none;
}

/* Main nav for desktop */
.main-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Hamburger styling */
.hamburger {
  display: none;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .top-header {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }

  .top-left, .top-center, .social-icons {
    justify-content: center;
    width: 100%;
    margin: 3px 0;
  }

  /* Show logo/contact/hamburger inside top bar */
  .mobile-main-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 5px;
  }

  .main-nav {
    display: none; /* hide main nav on mobile */
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }

  .hamburger div {
    width: 25px;
    height: 3px;
    background-color: #eee9e9;
  }
}
