@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
/* ===========================

   Reset & Base Styles

   =========================== */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

 

:root {

    --primary-gold: #F5A623;

    --secondary-gold: #FDB44B;

    --dark-overlay: rgba(0, 0, 0, 0.5);

    --text-white: #FFFFFF;

    --text-black: #1a1a1a;


}
body{
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color:#1A1A1D;
    overflow-x: hidden;
}

/* ===========================

   Hero Section

   =========================== */

.hero-section {

    position: relative;

    width: 100%;

    height: 100vh;

    min-height: 600px;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

}

 

/* Video Background */

.hero-video {

    position: absolute;

    top: 50%;

    left: 50%;

    min-width: 100%;

    min-height: 100%;

    width: auto;

    height: auto;

    transform: translate(-50%, -50%);

    z-index: -2;

    object-fit: cover;

}

 

/* Dark Overlay */

.hero-overlay {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: var(--dark-overlay);

    z-index: -1;

}

 

/* Hero Content Container */

.hero-content {

    position: relative;

    width: 100%;

    height: 100%;

    display: flex;

    flex-direction: column;

    z-index: 1;

}

 

/* ===========================

   Navigation Bar

   =========================== */

.navbar {

    width: 100%;

    padding: 20px 0;

    position: absolute;

    top: 0;

    left: 0;

    z-index: 100;

}

 

.nav-container {

    max-width: 1400px;

    margin: 0 auto;

    padding: 0 40px;

    display: flex;

    justify-content: space-between;

    align-items: center;

}

 

/* Logo */

.logo {

    display: flex;

    flex-direction: column;

    gap: 2px;

}

 

.logo-text {

    font-size: 24px;

    font-weight: 400;

    color: var(--text-white);

    font-family: 'Brush Script MT', cursive;

    letter-spacing: 1px;

}

 

.logo-subtitle {

    font-size: 9px;

    font-weight: 300;

    color: var(--text-white);

    letter-spacing: 2px;

    text-transform: uppercase;

}

 

/* Navigation Menu */

.nav-menu {

    display: flex;

    list-style: none;

    gap: 35px;

    margin: 0;

}

 

.nav-menu li a {

    color: var(--text-white);

    text-decoration: none;

    font-size: 14px;

    font-weight: 400;

    letter-spacing: 0.5px;

    transition: color 0.3s ease;

    text-transform: uppercase;

}

 

.nav-menu li a:hover {

    color: var(--primary-gold);

}

 

/* Social Icons */

.social-icons {

    display: flex;

    gap: 20px;

}

 

.social-icons a {

    display: flex;

    align-items: center;

    justify-content: center;

    transition: transform 0.3s ease, opacity 0.3s ease;

}

 

.social-icons a:hover {

    transform: scale(1.1);

    opacity: 0.8;

}

 

.social-icons svg {

    width: 22px;

    height: 22px;

}

 

/* Mobile Menu Toggle */

.mobile-menu-toggle {

    display: none;

    flex-direction: column;

    gap: 5px;

    background: none;

    border: none;

    cursor: pointer;

    padding: 5px;

}

 

.mobile-menu-toggle span {

    width: 25px;

    height: 2px;

    background: var(--text-white);

    transition: all 0.3s ease;

}

 

/* ===========================

   Hero Text Content

   =========================== */

.hero-text {

    flex: 1;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    padding: 0 20px;

    margin-top: 60px;

}

 

.hero-title {

    font-size: clamp(48px, 6vw, 96px);

    font-weight: 500;

    line-height: 1.1;

    margin-bottom: 20px;

    display: flex;

    flex-direction: column;

}

 

.title-yellow {

    color: var(--primary-gold);
}

 

.title-white {

    color: var(--text-white);

    text-transform: lowercase;

}

 

.hero-subtitle {

    font-size: clamp(16px, 2.5vw, 22px);

    font-weight: 300;

    color: var(--text-white);

    margin-bottom: 40px;

    max-width: 700px;

    line-height: 1.6;

}

 

/* ===========================

   Hero Buttons

   =========================== */

.hero-buttons {

    display: flex;

    gap: 20px;

    flex-wrap: wrap;

    justify-content: center;

}

 

.btn {

    padding: 16px 40px;

    font-size: 16px;

    font-weight: 600;

    text-decoration: none;

    border-radius: 50px;

    transition: all 0.3s ease;

    cursor: pointer;

    display: inline-block;

    border: 2px solid transparent;

}

 

.btn-primary {

    background: var(--primary-gold);

    color: #000;

    border-color: var(--primary-gold);

}

 

.btn-primary:hover {

    background: var(--secondary-gold);

    border-color: var(--secondary-gold);

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3);

}

 

.btn-secondary {

    background: var(--primary-gold);

    color: #000;

    border-color: var(--primary-gold);

}

 

.btn-secondary:hover {

    background: var(--secondary-gold);

    border-color: var(--secondary-gold);

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3);

}

/* Cards Grid */

.cards-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    margin-top: 50px;

}

 

/* Individual Card */

.card {

    position: relative;

    height: 760px;
    max-width: 400px;

    border-radius: 35px;

    overflow: hidden;

    cursor: pointer;

    transition: transform 0.4s ease, box-shadow 0.4s ease;

}

 

.card:hover {

    transform: translateY(-10px);

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);

}

 

/* Card Image */

.card-image {

    width: 100%;

    height: 100%;

    object-fit: cover;

    position: absolute;

    top: 0;

    left: 0;

    transition: transform 0.4s ease;

}

 

.card:hover .card-image {

    transform: scale(1.05);

}

 

/* Card Overlay */

.card-overlay {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: linear-gradient(

        to bottom,

        rgba(0, 0, 0, 0.2) 0%,

        rgba(0, 0, 0, 0.5) 50%,

        rgba(0, 0, 0, 0.8) 100%

    );

    z-index: 1;

}

.overlay-1{
    background: linear-gradient(

        to bottom,

        rgba(0, 0, 0, 0.2) 0%,

        rgba(0, 0, 0, 0.5) 49%,

        rgba(0, 177, 204, 0.8) 100%

    );
}

.overlay-2{
    background: linear-gradient(

        to bottom,

        rgba(0, 0, 0, 0.2) 0%,

        rgba(0, 0, 0, 0.5) 49%,

        rgba(82, 54, 154, 0.8) 100%

    );
}

.overlay-3{
    background: linear-gradient(

        to bottom,

        rgba(0, 0, 0, 0.2) 0%,

        rgba(0, 0, 0, 0.5) 49%,

        rgba(27, 68, 169, 0.8) 100%

    );
}



 

/* Card Content */

.card-content {

    position: relative;

    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: flex-end;

    padding: 40px 30px;

    z-index: 2;

    color: var(--text-white);

}

 

.card-title {

    font-size: clamp(32px, 4vw, 42px);

    font-weight: 700;

    margin-bottom: 15px;

    color: var(--text-white);

}

 

.card-description {

    font-size: clamp(15px, 1.5vw, 18px);

    font-weight: 300;

    line-height: 1.6;

    margin-bottom: 25px;

    color: var(--text-white);

    opacity: 0.95;

}
 

/* ===========================

   Responsive Design

   =========================== */

 

/* Tablets */

@media (max-width: 1024px) {

    .nav-container {

        padding: 0 30px;

    }

 

    .nav-menu {

        gap: 25px;

    }

 

    .nav-menu li a {

        font-size: 13px;

    }

     /* Cards Section - Tablets */

    .cards-section {

        padding: 80px 20px;

    }

 

    .cards-grid {

        grid-template-columns: repeat(2, 1fr);

        gap: 25px;

    }

 

    .card:nth-child(3) {

        grid-column: 1 / -1;

        max-width: 600px;

        margin: 0 auto;

        width: 100%;

    }

 

    .card {

        height: 500px;

    }

}

 

/* Mobile */

@media (max-width: 768px) {

    .nav-container {

        padding: 0 20px;

    }

 

    .nav-menu {

        position: absolute;

        top: 100%;

        left: 0;

        right: 0;

        background: rgba(0, 0, 0, 0.95);

        flex-direction: column;

        gap: 0;

        padding: 20px;

        display: none;

        margin-top: 10px;

    }

 

    .nav-menu.active {

        display: flex;

    }

 

    .nav-menu li {

        padding: 15px 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.1);

    }

 

    .nav-menu li:last-child {

        border-bottom: none;

    }

 

    .mobile-menu-toggle {

        display: flex;

    }

 

    .social-icons {

        display: none;

    }

 

    .hero-title {

        margin-bottom: 15px;

    }

 

    .hero-subtitle {

        margin-bottom: 30px;

        font-size: 16px;

    }

 

    .hero-buttons {

        flex-direction: column;

        width: 100%;

        max-width: 300px;

    }

 

    .btn {

        width: 100%;

        padding: 14px 30px;

        font-size: 15px;

    }

     /* Cards Section - Mobile */

    .cards-section {

        padding: 60px 15px;

    }

 

    .section-header {

        margin-bottom: 40px;

    }

 

    .section-title {

        font-size: 26px;

        padding: 0 10px;

    }

 

    .section-subtitle {

        font-size: 16px;

        padding: 0 10px;

    }

 

    .cards-grid {

        grid-template-columns: 1fr;

        gap: 20px;

        margin-top: 30px;

    }

 

    .card:nth-child(3) {

        grid-column: auto;

        max-width: 100%;

    }

 

    .card {

        height: 450px;

    }

 

    .card-content {

        padding: 30px 25px;

    }

 

    .card-title {

        font-size: 32px;

    }

 

    .card-description {

        font-size: 15px;

        margin-bottom: 20px;

    }

 

    .btn-card {

        width: 100%;

        text-align: center;

        padding: 12px 30px;

    }

}

 

/* Small Mobile */

@media (max-width: 480px) {

    .logo-text {

        font-size: 20px;

    }

 

    .logo-subtitle {

        font-size: 8px;

    }

 

    .nav-container {

        padding: 0 15px;

    }

 

    .hero-text {

        padding: 0 15px;

    }

    /* Cards Section - Small Mobile */

    .cards-section {

        padding: 50px 15px;

    }

 

    .section-title {

        font-size: 24px;

    }

 

    .section-subtitle {

        font-size: 15px;

    }

 

    .card {

        height: 400px;

    }

 

    .card-content {

        padding: 25px 20px;

    }

 

    .card-title {

        font-size: 28px;

    }

 

    .card-description {

        font-size: 14px;

    }

}

 

/* ===========================

   Animations

   =========================== */

@keyframes fadeInUp {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

 

.hero-title,

.hero-subtitle,

.hero-buttons {

    animation: fadeInUp 0.8s ease forwards;

}

 

.hero-subtitle {

    animation-delay: 0.2s;

}



/* lead */

.lead-section{
    text-align: center;
    padding: 128px 0;
}
 
  .gradient-text {
    font-size: clamp(24px, 4vw, 42px);
    font-weight: 400;
    background: linear-gradient(90deg, #1B44A9 0%, #00B1CC 50%, #52369C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.4;
    text-align: center;
}

.lead-text{
    max-width: 800px;
    margin: 0 auto;
}



/* ===========================

   Contact Section

   =========================== */

.contact-section {

    min-height: 100vh;

    padding: 80px 20px;

    background: white;

    display: flex;

    align-items: center;

    justify-content: center;

}

 

.contact-container {

    max-width: 700px;

    width: 100%;

    margin: 0 auto;

}

 

.contact-header {

    text-align: center;

    margin-bottom: 50px;

}

 

.section-title {

    font-size: clamp(36px, 5vw, 48px);

    font-weight: 700;

    color: var(--primary-gold);

    margin-bottom: 15px;

}

 

.section-subtitle {

    font-size: clamp(16px, 2vw, 18px);

    font-weight: 300;

    color: var(--text-white);

    line-height: 1.6;

    opacity: 0.9;

}

 

/* ===========================

   Contact Form

   =========================== */

.contact-form {

    background: rgba(255, 255, 255, 0.05);

    padding: 40px;

    border-radius: 20px;

    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.1);

}

 

.form-group {

    margin-bottom: 25px;

}

 

.form-group label {

    display: block;

    color: var(--text-black);

    font-size: 14px;

    font-weight: 500;

    margin-bottom: 8px;

    letter-spacing: 0.5px;

}

 

.required {

    color: var(--primary-gold);

}

 

.form-group input,

.form-group textarea {

    width: 100%;

    padding: 15px 20px;

    background: rgba(255, 255, 255, 0.08);

    border: 2px solid #ccc;

    border-radius: 10px;

    color: var(--text-black);

    font-size: 15px;

    font-family: var(--font-primary);

    transition: all 0.3s ease;

}

 

.form-group input::placeholder,

.form-group textarea::placeholder {

    color: rgba(255, 255, 255, 0.4);

}

 

.form-group input:focus,

.form-group textarea:focus {

    outline: none;

    border-color: var(--primary-gold);

    background: rgba(255, 255, 255, 0.1);

    box-shadow: 0 0 0 4px rgba(245, 166, 35, 0.1);

}

 

.form-group textarea {

    resize: vertical;

    min-height: 120px;

}

 

/* Error Messages */

.error-message {

    display: block;

    color: #ff6b6b;

    font-size: 13px;

    margin-top: 5px;

    min-height: 18px;

    font-weight: 400;

}

 

.form-group input.error,

.form-group textarea.error {

    border-color: #ff6b6b;

}

 

/* Submit Button */

.btn-submit {

    width: 100%;

    background: var(--primary-gold);

    color: #000;

    border: none;

    padding: 18px 40px;

    font-size: 16px;

    font-weight: 600;

    border-radius: 50px;

    cursor: pointer;

    transition: all 0.3s ease;

    margin-top: 10px;

    position: relative;

    overflow: hidden;

}

 

.btn-submit:hover:not(:disabled) {

    background: var(--secondary-gold);

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.3);

}

 

.btn-submit:disabled {

    opacity: 0.6;

    cursor: not-allowed;

}

 

.btn-submit:active:not(:disabled) {

    transform: translateY(0);

}

 

/* Form Messages */

.form-message {

    margin-top: 20px;

    padding: 15px 20px;

    border-radius: 10px;

    font-size: 14px;

    text-align: center;

    display: none;

}

 

.form-message.success {

    background: rgba(76, 175, 80, 0.2);

    color: #4caf50;

    border: 1px solid rgba(76, 175, 80, 0.3);

    display: block;

}

 

.form-message.error {

    background: rgba(244, 67, 54, 0.2);

    color: #f44336;

    border: 1px solid rgba(244, 67, 54, 0.3);

    display: block;

}



/* ===========================

   Contact Section Responsive

   =========================== */

@media (max-width: 768px) {

    .contact-section {

        padding: 60px 15px;

    }

 

    .contact-form {

        padding: 30px 20px;

    }

 

    .contact-header {

        margin-bottom: 40px;

    }

 

    .form-group {

        margin-bottom: 20px;

    }

 

    .form-group input,

    .form-group textarea {

        padding: 12px 15px;

        font-size: 14px;

    }

 

    .btn-submit {

        padding: 16px 30px;

        font-size: 15px;

    }

}

 

@media (max-width: 480px) {

    .contact-section {

        padding: 50px 10px;

    }

 

    .contact-form {

        padding: 25px 15px;

    }

}

 

 

.hero-buttons {

    animation-delay: 0.4s;

}

/* ===========================

   Logos Carousel Section

   =========================== */

.logos-section {

    background: #FFFFFF;

    padding: 80px 20px;

    overflow: hidden;

}

 

.logos-container {

    max-width: 1200px;

    margin: 0 auto;

    text-align: center;

}

 

.logos-title {

    font-size: clamp(36px, 5vw, 48px);

    font-weight: 700;

    color: var(--primary-gold);

    margin-bottom: 40px;


}

 

.carousel-wrapper {

    position: relative;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    margin-bottom: 30px;

}

 

.carousel-container {

    overflow: hidden;

    width: 100%;

    max-width: 900px;

    position: relative;

}

 

.carousel-track {

    display: flex;

    gap: 40px;

    transition: transform 0.5s ease-in-out;

}

 

.carousel-item {

    min-width: calc((100% - 120px) / 4);

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background: #FFFFFF;

    border-radius: 8px;

    transition: transform 0.3s ease;

}

 

.carousel-item:hover {

    transform: scale(1.05);

}

 

.logo-img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

 

 

.carousel-btn {


    border: none;

    width: 30px;

    height: 30px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    transition: all 0.3s ease;

    flex-shrink: 0;

    color: #000;

}

 

.carousel-btn:hover {


    transform: scale(1.1);

}

 

.carousel-btn:active {

    transform: scale(0.95);

}

 

.logos-subtitle {

    font-size: 24px;

    color: #999;

    margin-top: 20px;

}

 

/* Responsive Design for Carousel */

@media (max-width: 1024px) {

    .carousel-item {

        min-width: calc((100% - 80px) / 3);

    }

}

 

@media (max-width: 768px) {

    .logos-section {

        padding: 60px 20px;

    }

 

    .carousel-item {

        min-width: calc((100% - 40px) / 2);

    }

 

    .carousel-track {

        gap: 20px;

    }

 

    .carousel-btn {

        width: 40px;

        height: 40px;

    }

 

    .carousel-btn svg {

        width: 20px;

        height: 20px;

    }

}

 

@media (max-width: 480px) {

    .logos-section {

        padding: 40px 15px;

    }

 

    .carousel-item {

        min-width: 100%;

    }

 

    .carousel-track {

        gap: 15px;

    }

 

    .logo-img {

        max-height: 60px;

    }

 

    .carousel-wrapper {

        gap: 10px;

    }

}

.container{
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
}

.img-responsive {
    max-width: 100%;
    height: auto;
  }



/* ===========================

   Cards Section

   =========================== */

.cards-section {

    width: 100%;

    padding: 100px 20px;

    background: #f8f8f8;

}

 

.cards-container {

    max-width: 1400px;

    margin: 0 auto;

}

 

/* Section Header */

.section-header {

    text-align: center;

    margin-bottom:32px;

}

 

.section-title {

    font-size: clamp(28px, 5vw, 42px);

    font-weight: 700;

    color: #1a1a1a;

    margin-bottom: 15px;

    line-height: 1.3;

}

 

.section-subtitle {

    font-size: clamp(16px, 2vw, 20px);

    font-weight: 300;

    color: #1a1a1a;

    max-width: 800px;

    margin: 0 auto;

    line-height: 1.6;

}

 



 

.btn-card {
    padding: 14px 35px;
    font-size: 24px;
    font-weight: 400;
    align-self: flex-start;
    margin: 0 auto;
    border: none;
}

.btn-card-lightblue{
    background: #00B1CC;
    color: #fff;
}

.btn-card-purple{
    background: #52369C;
    color: #fff;
}

.btn-card-blue{
    background: #1B44A9;
    color: #fff;
}

 

.btn-card:hover {

    background: var(--secondary-gold);

    border-color: var(--secondary-gold);

    transform: translateY(-2px);

    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.4);

}


.section{
    padding: 64px 16px;
    box-sizing: border-box;
}
@media screen and (min-width:768px){
    .section{
        padding:64px 0px;
    }
}

.section-title{
    font-weight: 700;
    font-size: 2em;
    text-align: center;
}

.section-lead{
    color: gray;
    font-size: 1.2em;
    text-align: center;
    margin-top: 16px;
}

.cards-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 24px;
    box-sizing: border-box;
}
@media screen and (min-width:768px){
    .cards-container{
        flex-direction: row;
    }
}








.form-container{
    max-width: 800px;
    margin: 32px auto;
    padding: 0px 16px;
}

input[type=text], input[type=email], textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
  }
  
  input[type=submit] {
    background-color: #FFB100;
    width: 100%;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  input[type=submit]:hover {
    background-color: #FFB100;
  }



  .about-title{
    font-weight: 700;
    font-size: 2em;
    text-align: center;
    margin: 24px auto;
    max-width: 960px;
    display: block;
}

.about-lead{
    max-width: 960px;
    display: block;
    margin: 32px auto;
    line-height: 1.6;
    font-size: 1.1em;
}

.profile-section{
    background: #FFB100;
    padding: 48px;
}
@media screen and (min-width: 768px){
    .profile-section{
        padding: 48px 36px;
    }
}

.profile-title{
    font-size: 3em;
    font-weight: 600;
}

.profile-text{
    font-size: 1.5em;
    font-weight: 600;
    line-height: 1.6;
    max-width: 800px;
    display: block;
    margin:48px auto 0;
}

.profile-icons{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 48px 0;
}

.m-0{
    margin: 0 auto;
}

.profile-icons svg{
    width: 50px;
    height: 50px;
}