@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;600&display=swap');

:root {
    --primary-color: #FFB800; /* Logo Yellow/Gold */
    --secondary-color: #00AEEF; /* Logo Cyan/Blue */
    --accent-color: #0D253F; /* Logo Dark Navy */
    --text-light: #F9F9F9;
    --text-dark: #222222;
    --transition: all 0.3s ease;
    --section-padding: 100px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--text-light);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 2px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background-color: #C19A2E;
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.scrolled {
    background-color: var(--accent-color);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('assets/img/hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: var(--text-light);
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

.section-title p {
    color: #777;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.section-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    font-size: 8rem;
    color: rgba(0,0,0,0.03);
    z-index: 1;
    pointer-events: none;
    user-select: none;
    transition: var(--transition);
}

section:nth-of-type(even) .section-watermark {
    color: rgba(255,255,255,0.03);
}

.section-title:hover .section-watermark {
    transform: translate(-50%, -50%) rotate(0deg) scale(1.1);
    color: rgba(212, 175, 55, 0.05);
}

/* About Section */
.about {
    padding: var(--section-padding);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: #555;
}

.experience-badge {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-weight: 700;
    margin-top: 20px;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background-color: #f0f7ff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    margin-bottom: 15px;
}

/* Portfolio Section */
.portfolio {
    padding: var(--section-padding);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    height: 400px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background-color: #061221; /* Darker Navy for contrast */
    color: var(--text-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-family: inherit;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Footer */
footer {
    padding: 50px 0;
    background-color: #040d18;
    color: #777;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--text-light);
}

/* Mobile Nav */
.menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-grid, .contact-grid, .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .nav-links {
        display: none;
    }
    
    .menu-btn {
        display: block;
    }

    .footer-grid {
        text-align: center !important;
    }

    .footer-contact div, .social-links {
        justify-content: center !important;
    }
}
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #FFF;
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media screen and (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* Portfolio LightGallery Styles */
.portfolio-item {
    display: block;
    position: relative;
    overflow: hidden;
}

.zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .zoom-icon {
    opacity: 1;
}

.portfolio-overlay h4 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.portfolio-overlay p {
    font-size: 0.85rem;
    color: #ccc;
}

 / *   G o o g l e   T r a n s l a t e   S t y l i n g   * / 
 # g o o g l e _ t r a n s l a t e _ e l e m e n t   { 
         d i s p l a y :   i n l i n e - b l o c k ; 
         v e r t i c a l - a l i g n :   m i d d l e ; 
 } 
 
 . g o o g - t e - g a d g e t - s i m p l e   { 
         b a c k g r o u n d - c o l o r :   r g b a ( 2 5 5 ,   2 5 5 ,   2 5 5 ,   0 . 1 )   ! i m p o r t a n t ; 
         b o r d e r :   1 p x   s o l i d   v a r ( - - p r i m a r y - c o l o r )   ! i m p o r t a n t ; 
         p a d d i n g :   5 p x   1 0 p x   ! i m p o r t a n t ; 
         b o r d e r - r a d i u s :   4 p x   ! i m p o r t a n t ; 
         f o n t - f a m i l y :   ' I n t e r ' ,   s a n s - s e r i f   ! i m p o r t a n t ; 
         c u r s o r :   p o i n t e r   ! i m p o r t a n t ; 
         t r a n s i t i o n :   v a r ( - - t r a n s i t i o n )   ! i m p o r t a n t ; 
 } 
 
 . g o o g - t e - g a d g e t - s i m p l e : h o v e r   { 
         b a c k g r o u n d - c o l o r :   v a r ( - - p r i m a r y - c o l o r )   ! i m p o r t a n t ; 
 } 
 
 . g o o g - t e - g a d g e t - s i m p l e   s p a n   { 
         c o l o r :   v a r ( - - p r i m a r y - c o l o r )   ! i m p o r t a n t ; 
 } 
 
 . g o o g - t e - g a d g e t - s i m p l e : h o v e r   s p a n   { 
         c o l o r :   v a r ( - - s e c o n d a r y - c o l o r )   ! i m p o r t a n t ; 
 } 
 
 . g o o g - t e - g a d g e t - i c o n   { 
         d i s p l a y :   n o n e   ! i m p o r t a n t ; 
 } 
 
 . g o o g - t e - m e n u - f r a m e   { 
         b o x - s h a d o w :   0   4 p x   2 0 p x   r g b a ( 0 , 0 , 0 , 0 . 5 )   ! i m p o r t a n t ; 
 } 
 
 / *   H i d e   t h e   ' P o w e r e d   b y   G o o g l e '   t e x t   i f   p o s s i b l e   * / 
 . g o o g - l o g o - l i n k   { 
         d i s p l a y :   n o n e   ! i m p o r t a n t ; 
 } 
 . g o o g - t e - g a d g e t   { 
         c o l o r :   t r a n s p a r e n t   ! i m p o r t a n t ; 
 } 
 . g o o g - t e - b a n n e r - f r a m e . s k i p t r a n s l a t e   { 
         d i s p l a y :   n o n e   ! i m p o r t a n t ; 
 } 
 b o d y   { 
         t o p :   0 p x   ! i m p o r t a n t ; 
 }  
 
 / *   F o o t e r   T r a n s l a t e   F i x   * / 
 . f o o t e r - a b o u t   # g o o g l e _ t r a n s l a t e _ e l e m e n t   { 
         m a r g i n - t o p :   1 0 p x ; 
         d i s p l a y :   b l o c k ; 
 } 
  
 